From 72e0e292e5c581063ea1df96dea6f683eaecc9f9 Mon Sep 17 00:00:00 2001 From: Tiago Melo Date: Wed, 7 Mar 2018 17:28:59 +0000 Subject: [PATCH] mgr/dashboard_v2: fix cluster configuration page Configuration level 'develop' was changed to 'dev' in 1717d4c578be108d5b2c651305941974b2201b0f. Because of this all the dev configurations were not showing. Signed-off-by: Tiago Melo --- .../app/ceph/cluster/configuration/configuration.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pybind/mgr/dashboard_v2/frontend/src/app/ceph/cluster/configuration/configuration.component.ts b/src/pybind/mgr/dashboard_v2/frontend/src/app/ceph/cluster/configuration/configuration.component.ts index d6112e7d154fb..7c6ed68b448cd 100644 --- a/src/pybind/mgr/dashboard_v2/frontend/src/app/ceph/cluster/configuration/configuration.component.ts +++ b/src/pybind/mgr/dashboard_v2/frontend/src/app/ceph/cluster/configuration/configuration.component.ts @@ -18,12 +18,12 @@ export class ConfigurationComponent implements OnInit { label: 'Level', prop: 'level', value: 'basic', - options: ['basic', 'advanced', 'developer'], + options: ['basic', 'advanced', 'dev'], applyFilter: (row, value) => { enum Level { basic = 0, advanced = 1, - developer = 2 + dev = 2 } const levelVal = Level[value]; -- 2.39.5