Skip to content

Commit

Permalink
Merge pull request #626 from zilliztech/p
Browse files Browse the repository at this point in the history
feat: display partition id on the partition page
  • Loading branch information
shanghaikid authored Aug 21, 2024
2 parents d7a947d + eb98de6 commit 6fb43da
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions client/src/pages/databases/collections/partitions/Partitions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,18 @@ const Partitions = () => {
];

const colDefinitions: ColDefinitionsType[] = [
{
id: 'id',
align: 'left',
needCopy: true,
disablePadding: false,
label: t('id'),
getStyle: () => {
return {
width: 120,
};
},
},
{
id: 'name',
sortType: 'string',
Expand All @@ -210,12 +222,6 @@ const Partitions = () => {
label: t('name'),
},

// {
// id: '_statusElement',
// align: 'left',
// disablePadding: false,
// label: t('status'),
// },
{
id: 'rowCount',
align: 'left',
Expand Down

0 comments on commit 6fb43da

Please sign in to comment.