]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
mgr/dashboard: fix UI of the columns for rgw-bucket-list
authorAvan Thakkar <athakkar@redhat.com>
Thu, 25 Jun 2020 16:56:07 +0000 (22:26 +0530)
committerAvan Thakkar <athakkar@redhat.com>
Thu, 25 Jun 2020 16:56:07 +0000 (22:26 +0530)
Fixes: https://tracker.ceph.com/issues/46210
Signed-off-by: Avan Thakkar <athakkar@redhat.com>
src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts

index cf7820b8edd65be3b05fa5ecb3234cbe3ea991cd..9d991ff943cf42df157c83711014f5e18b9ea9ab 100644 (file)
@@ -103,31 +103,31 @@ export class RgwBucketListComponent extends ListWithDetails implements OnInit {
       {
         name: this.i18n('Owner'),
         prop: 'owner',
-        flexGrow: 3
+        flexGrow: 2.5
       },
       {
         name: this.i18n('Used Capacity'),
         prop: 'bucket_size',
-        flexGrow: 0.5,
+        flexGrow: 0.6,
         pipe: this.dimlessBinaryPipe
       },
       {
         name: this.i18n('Capacity Limit %'),
         prop: 'size_usage',
         cellTemplate: this.bucketSizeTpl,
-        flexGrow: 1
+        flexGrow: 0.8
       },
       {
         name: this.i18n('Objects'),
         prop: 'num_objects',
-        flexGrow: 0.5,
+        flexGrow: 0.6,
         pipe: this.dimlessPipe
       },
       {
         name: this.i18n('Object Limit %'),
         prop: 'object_usage',
         cellTemplate: this.bucketObjectTpl,
-        flexGrow: 1
+        flexGrow: 0.8
       }
     ];
   }