From 22669872f1eacc382ea6158f9a83f6ffe9602889 Mon Sep 17 00:00:00 2001 From: Tiago Melo Date: Thu, 7 Jun 2018 11:59:13 +0100 Subject: [PATCH] mgr/dashboard: Fix pool usage not displaying on filesystem page Reference to the template was undefined during the init of the component. Signed-off-by: Tiago Melo --- .../cephfs-detail.component.html | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html index ac12cc95895..b19ab9f8e13 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html @@ -25,7 +25,6 @@ [columns]="pools.columns" [toolHeader]="false"> - @@ -36,25 +35,26 @@ - - - - - - - - {{ row.state === 'standby-replay' ? 'Evts' : 'Reqs' }}: {{ value | dimless }} /s - + *ngIf="clientsSelect"> + + + + + + + + + {{ row.state === 'standby-replay' ? 'Evts' : 'Reqs' }}: {{ value | dimless }} /s + -- 2.47.3