Skip to content

Commit

Permalink
feat: support display segment level
Browse files Browse the repository at this point in the history
Signed-off-by: ryjiang <[email protected]>
  • Loading branch information
shanghaikid committed Aug 21, 2024
1 parent 0b75e92 commit 484fc33
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion client/src/pages/databases/collections/segments/Segments.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,22 @@ const Segments = () => {
align: 'left',
disablePadding: false,
needCopy: true,
label: collectionTrans('segmentID'),
label: 'ID',
getStyle: () => {
return {
minWidth: 190,
};
},
},
{
id: 'level',
align: 'left',
disablePadding: false,
label: 'Level',
getStyle: () => {
return {};
},
},
{
id: 'partitionID',
align: 'left',
Expand Down

0 comments on commit 484fc33

Please sign in to comment.