mirror of https://github.com/apache/cloudstack.git
UI: Fix `docHelp` links for Add Hosts, Add Clusters, Disable Clusters and Enable Clusters forms (#10394)
This commit is contained in:
parent
7bef25666f
commit
212f2a3898
|
|
@ -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' }
|
||||
|
|
|
|||
|
|
@ -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')))
|
||||
|
|
|
|||
Loading…
Reference in New Issue