From: Tiago Melo Date: Wed, 7 Mar 2018 17:28:59 +0000 (+0000) Subject: mgr/dashboard_v2: fix cluster configuration page X-Git-Tag: v13.0.2~16^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=72e0e292e5c581063ea1df96dea6f683eaecc9f9;p=ceph.git 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 --- 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 d6112e7d154f..7c6ed68b448c 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];