Skip to content

Commit 67f0b69

Browse files
committed
webui: fix display of merges in rangelog
It would previously show "unknown". Observed in cockroachdb#31409. Release note: None
1 parent 2cbfb51 commit 67f0b69

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pkg/ui/src/views/reports/containers/range/logTable.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ function printLogEventType(
3737
return "Remove";
3838
case protos.cockroach.storage.RangeLogEventType.split:
3939
return "Split";
40+
case protos.cockroach.storage.RangeLogEventType.merge:
41+
return "Merge";
4042
default:
4143
return "Unknown";
4244
}

0 commit comments

Comments
 (0)