Skip to content

Commit 4fe21a0

Browse files
fix(Partitions): fix columns titles
1 parent 307fb4f commit 4fe21a0

File tree

1 file changed

+4
-4
lines changed
  • src/containers/Tenant/Diagnostics/Partitions/Headers

1 file changed

+4
-4
lines changed

src/containers/Tenant/Diagnostics/Partitions/Headers/Headers.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ export const ReadSessionHeader = () => (
2828
export const WriteLagsHeader = () => (
2929
<LabelWithPopover
3030
className={b('lags')}
31-
text={PARTITIONS_COLUMNS_TITILES[PARTITIONS_COLUMNS_IDS.READ_LAGS]}
32-
popoverContent={<LagPopoverContent text={i18n('lagsPopover.readLags')} type="read" />}
31+
text={PARTITIONS_COLUMNS_TITILES[PARTITIONS_COLUMNS_IDS.WRITE_LAGS]}
32+
popoverContent={<LagPopoverContent text={i18n('lagsPopover.writeLags')} type="write" />}
3333
/>
3434
);
3535

3636
export const ReadLagsHeader = () => (
3737
<LabelWithPopover
3838
className={b('lags')}
39-
text={PARTITIONS_COLUMNS_TITILES[PARTITIONS_COLUMNS_IDS.WRITE_LAGS]}
40-
popoverContent={<LagPopoverContent text={i18n('lagsPopover.writeLags')} type="write" />}
39+
text={PARTITIONS_COLUMNS_TITILES[PARTITIONS_COLUMNS_IDS.READ_LAGS]}
40+
popoverContent={<LagPopoverContent text={i18n('lagsPopover.readLags')} type="read" />}
4141
/>
4242
);
4343

0 commit comments

Comments
 (0)