This is an automated email from the ASF dual-hosted git repository.
dahn pushed a commit to branch 4.19
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.19 by this push:
new 212f2a3898c UI: Fix `docHelp` links for Add Hosts, Add Clusters,
Disable Clusters and Enable Clusters forms (#10394)
212f2a3898c is described below
commit 212f2a3898c46a09b2515c954af8d61d995bcf56
Author: Bernardo De Marco Gonçalves <[email protected]>
AuthorDate: Mon Feb 17 05:19:21 2025 -0300
UI: Fix `docHelp` links for Add Hosts, Add Clusters, Disable Clusters and
Enable Clusters forms (#10394)
---
ui/src/config/section/infra/clusters.js | 6 +++---
ui/src/config/section/infra/hosts.js | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/ui/src/config/section/infra/clusters.js
b/ui/src/config/section/infra/clusters.js
index 8b2f37d5b7b..a3dda2d760c 100644
--- a/ui/src/config/section/infra/clusters.js
+++ b/ui/src/config/section/infra/clusters.js
@@ -73,7 +73,7 @@ export default {
api: 'addCluster',
icon: 'plus-outlined',
label: 'label.add.cluster',
- docHelp: 'adminguide/installguide/configuration.html#adding-a-cluster',
+ docHelp: 'installguide/configuration.html#adding-a-cluster',
listView: true,
popup: true,
component: shallowRef(defineAsyncComponent(() =>
import('@/views/infra/ClusterAdd.vue')))
@@ -90,7 +90,7 @@ export default {
icon: 'play-circle-outlined',
label: 'label.action.enable.cluster',
message: 'message.action.enable.cluster',
- docHelp:
'adminguide/installguide/hosts.html#disabling-and-enabling-zones-pods-and-clusters',
+ docHelp:
'adminguide/hosts.html#disabling-and-enabling-zones-pods-and-clusters',
dataView: true,
defaultArgs: { allocationstate: 'Enabled' },
show: (record) => { return record.allocationstate === 'Disabled' }
@@ -100,7 +100,7 @@ export default {
icon: 'pause-circle-outlined',
label: 'label.action.disable.cluster',
message: 'message.action.disable.cluster',
- docHelp:
'adminguide/installguide/hosts.html#disabling-and-enabling-zones-pods-and-clusters',
+ docHelp:
'adminguide/hosts.html#disabling-and-enabling-zones-pods-and-clusters',
dataView: true,
defaultArgs: { allocationstate: 'Disabled' },
show: (record) => { return record.allocationstate === 'Enabled' }
diff --git a/ui/src/config/section/infra/hosts.js
b/ui/src/config/section/infra/hosts.js
index de42762c274..f13029b61ca 100644
--- a/ui/src/config/section/infra/hosts.js
+++ b/ui/src/config/section/infra/hosts.js
@@ -64,7 +64,7 @@ export default {
api: 'addHost',
icon: 'plus-outlined',
label: 'label.add.host',
- docHelp: 'adminguide/installguide/configuration.html#adding-a-host',
+ docHelp: 'installguide/configuration.html#adding-a-host',
listView: true,
popup: true,
component: shallowRef(defineAsyncComponent(() =>
import('@/views/infra/HostAdd.vue')))