Skip to content

Commit 2393b45

Browse files
committed
nanofix
1 parent abdf53f commit 2393b45

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/containers/Tenant/Query/Preview/components/TopicPreviewTable.tsx

+4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ const columns: Column<TopicMessage>[] = [
2121
name: TOPIC_DATA_COLUMNS_IDS.OFFSET,
2222
header: TOPIC_DATA_COLUMNS_TITLES[TOPIC_DATA_COLUMNS_IDS.OFFSET],
2323
render: ({row: {Offset}}) => (isNil(Offset) ? EMPTY_DATA_PLACEHOLDER : Offset),
24+
sortable: false,
2425
},
2526
{
2627
name: TOPIC_DATA_COLUMNS_IDS.TIMESTAMP_CREATE,
@@ -33,6 +34,7 @@ const columns: Column<TopicMessage>[] = [
3334
</React.Fragment>
3435
),
3536
width: 200,
37+
sortable: false,
3638
},
3739
{
3840
name: TOPIC_DATA_COLUMNS_IDS.MESSAGE,
@@ -41,13 +43,15 @@ const columns: Column<TopicMessage>[] = [
4143
<TopicDataMessage message={Message} size={OriginalSize} />
4244
),
4345
width: 500,
46+
sortable: false,
4447
},
4548
{
4649
name: TOPIC_DATA_COLUMNS_IDS.SIZE,
4750
header: TOPIC_DATA_COLUMNS_TITLES[TOPIC_DATA_COLUMNS_IDS.SIZE],
4851
render: ({row: {StorageSize}}) => <TopicDataSize size={StorageSize} />,
4952
align: 'right',
5053
width: 100,
54+
sortable: false,
5155
},
5256
];
5357

0 commit comments

Comments
 (0)