Skip to content

Commit

Permalink
Merge pull request #625 from zilliztech/attu-608
Browse files Browse the repository at this point in the history
feat: support display segment level
  • Loading branch information
shanghaikid authored Aug 21, 2024
2 parents 0b75e92 + 484fc33 commit d7a947d
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 d7a947d

Please sign in to comment.