This is an automated email from the ASF dual-hosted git repository.
nvazquez pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/main by this push:
new 76b3066d52 ui: Fix migrate systemVM icon when stopped (#6337)
76b3066d52 is described below
commit 76b3066d52d7d73358745a3058ffd28e12fdf6f0
Author: Pearl Dsilva <[email protected]>
AuthorDate: Fri Apr 29 16:14:47 2022 +0530
ui: Fix migrate systemVM icon when stopped (#6337)
---
ui/src/config/section/infra/systemVms.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ui/src/config/section/infra/systemVms.js
b/ui/src/config/section/infra/systemVms.js
index 1de07fa04e..294481898f 100644
--- a/ui/src/config/section/infra/systemVms.js
+++ b/ui/src/config/section/infra/systemVms.js
@@ -106,7 +106,7 @@ export default {
},
{
api: 'migrateSystemVm',
- icon: 'drag',
+ icon: 'drag-outlined',
label: 'label.action.migrate.systemvm.to.ps',
dataView: true,
show: (record, store) => { return ['Stopped'].includes(record.state) &&
['VMware'].includes(record.hypervisor) },