Browse Source

fix cn grid header

Signed-off-by: ryjiang <jiangruiyi@gmail.com>
ryjiang 1 year ago
parent
commit
82e543585e
1 changed files with 5 additions and 1 deletions
  1. 5 1
      client/src/pages/collections/Collections.tsx

+ 5 - 1
client/src/pages/collections/Collections.tsx

@@ -518,7 +518,11 @@ const Collections = () => {
       id: 'description',
       align: 'left',
       disablePadding: false,
-      label: collectionTrans('description'),
+      label: (
+        <span className="flex-center with-max-content">
+          {collectionTrans('description')}
+        </span>
+      ),
       formatter(v) {
         return v.description || '--';
       },