From 9058e5a3525ccb26eaf81b1ad6b97a2a3114eb7a Mon Sep 17 00:00:00 2001 From: Tatjana Dehler Date: Wed, 10 Jul 2019 16:40:21 +0200 Subject: [PATCH] mgr/dashboard: fix icons variable assignment Fixes: https://tracker.ceph.com/issues/40717 Signed-off-by: Tatjana Dehler --- .../shared/components/config-option/config-option.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/config-option/config-option.component.ts b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/config-option/config-option.component.ts index 07eaf3362f2..3c28b82761b 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/config-option/config-option.component.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/config-option/config-option.component.ts @@ -25,7 +25,7 @@ export class ConfigOptionComponent implements OnInit { @Input() optionsFormShowReset = true; - icons: Icons; + icons = Icons; options: Array = []; optionsFormGroup: CdFormGroup = new CdFormGroup({}); -- 2.39.5