From: Afreen Misbah Date: Mon, 4 May 2026 10:33:20 +0000 (+0530) Subject: Fix conflicts X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=dc45082a75c2b250e029ecfc158de58e2315ae9b;p=ceph.git Fix conflicts Signed-off-by: Afreen Misbah --- dc45082a75c2b250e029ecfc158de58e2315ae9b diff --cc src/pybind/mgr/dashboard/frontend/src/app/shared/components/components.module.ts index ba8f705ce7d0,dae0160aff25..0d57ae3f68a6 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/components.module.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/components.module.ts @@@ -291,9 -286,7 +291,9 @@@ export class ComponentsModule CheckMarkOutline16, ArrowUpRight16, InProgress16, - ArrowDown16 + ArrowDown16, + Deploy16, + Warning16 ]); } - } + } diff --cc src/pybind/mgr/dashboard/frontend/src/app/shared/constants/app.constants.ts index 7de826aa2e3a,9028c05a60fe..50a3bd6aa980 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/constants/app.constants.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/constants/app.constants.ts @@@ -161,10 -150,10 +161,10 @@@ export class ActionLabelsI18n DISCONNECT: string; RECONNECT: string; AUTHORIZE: string; - EXPAND_CLUSTER: string; + ADD_STORAGE: string; SETUP_MULTISITE_REPLICATION: string; NFS_EXPORT: string; - + VIEW: string; constructor() { /* Create a new item */ this.CREATE = $localize`Create`; @@@ -253,10 -242,9 +253,10 @@@ this.CONNECT = $localize`Connect`; this.DISCONNECT = $localize`Disconnect`; this.RECONNECT = $localize`Reconnect`; - this.EXPAND_CLUSTER = $localize`Expand Cluster`; + this.ADD_STORAGE = $localize`Add Storage`; this.NFS_EXPORT = $localize`Create NFS Export`; + this.VIEW = $localize`View`; } } diff --cc src/pybind/mgr/dashboard/frontend/src/app/shared/enum/icons.enum.ts index 53bd91f9acb5,4a11f330d6af..1d7be590d853 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/enum/icons.enum.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/enum/icons.enum.ts @@@ -164,11 -165,5 +164,11 @@@ export const ICON_TYPE = checkMarkOutline: 'checkmark--outline', arrowUpRight: ' arrow--up-right', inProgress: 'in-progress', - arrowDown: 'arrow--down' + arrowDown: 'arrow--down', - warning: 'warning', ++ warning: 'warning' +} as const; + +export const EMPTY_STATE_IMAGE = { + default: 'assets/empty-state.png', + search: 'assets/empty-state-search.png' } as const;