Skip to content

Commit

Permalink
feat: display partition id
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 d7a947d commit eb98de6
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 eb98de6

Please sign in to comment.