Skip to content

Commit

Permalink
Merge pull request #17843 from a-robinson/fixkey
Browse files Browse the repository at this point in the history
ui: Fix start key printed on range debug page
  • Loading branch information
a-robinson authored Aug 23, 2017
2 parents 1d4ed2f + 5973fc3 commit e8a1b41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/ui/embedded.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pkg/ui/src/views/reports/containers/range/rangeTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ export default class RangeTable extends React.Component<RangeTableProps, {}> {
}
detailsByStoreID.set(info.source_store_id, {
id: this.createContent(Print.ReplicaID(rangeID, RangeInfo.GetLocalReplica(info))),
keyRange: this.createContent(`${info.span.end_key} to ${info.span.end_key}`),
keyRange: this.createContent(`${info.span.start_key} to ${info.span.end_key}`),
problems: this.contentProblems(info.problems),
raftState: raftState,
leaseHolder: this.createContent(
Expand Down

0 comments on commit e8a1b41

Please sign in to comment.