Browse Source

fix: users and properties grid space

Signed-off-by: ryjiang <jiangruiyi@gmail.com>
ryjiang 2 weeks ago
parent
commit
2cf18bde0a

+ 1 - 0
client/src/pages/databases/collections/properties/Properties.tsx

@@ -188,6 +188,7 @@ const Properties = (props: PropertiesProps) => {
     <Box sx={{ height: '100%' }}>
       <AttuGrid
         toolbarConfigs={toolbarConfigs}
+        addSpacerColumn={true}
         colDefinitions={colDefinitions}
         rows={data}
         rowCount={total}

+ 1 - 0
client/src/pages/user/User.tsx

@@ -253,6 +253,7 @@ const Users = () => {
         colDefinitions={colDefinitions}
         rows={result}
         rowCount={total}
+        addSpacerColumn={true}
         primaryKey="username"
         showPagination={true}
         selected={selectedUser}