Skip to content

Commit ab12930

Browse files
bernardodemarcodhslove
authored andcommitted
UI: Fix docHelp links for Add Hosts, Add Clusters, Disable Clusters and Enable Clusters forms (apache#10394)
1 parent 95c10a7 commit ab12930

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ui/src/config/section/infra/clusters.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export default {
7373
api: 'addCluster',
7474
icon: 'plus-outlined',
7575
label: 'label.add.cluster',
76-
docHelp: 'adminguide/installguide/configuration.html#adding-a-cluster',
76+
docHelp: 'installguide/configuration.html#adding-a-cluster',
7777
listView: true,
7878
popup: true,
7979
component: shallowRef(defineAsyncComponent(() => import('@/views/infra/ClusterAdd.vue')))
@@ -95,7 +95,7 @@ export default {
9595
icon: 'play-circle-outlined',
9696
label: 'label.action.enable.cluster',
9797
message: 'message.action.enable.cluster',
98-
docHelp: 'adminguide/installguide/hosts.html#disabling-and-enabling-zones-pods-and-clusters',
98+
docHelp: 'adminguide/hosts.html#disabling-and-enabling-zones-pods-and-clusters',
9999
dataView: true,
100100
defaultArgs: { allocationstate: 'Enabled' },
101101
show: (record) => { return record.allocationstate === 'Disabled' }
@@ -105,7 +105,7 @@ export default {
105105
icon: 'pause-circle-outlined',
106106
label: 'label.action.disable.cluster',
107107
message: 'message.action.disable.cluster',
108-
docHelp: 'adminguide/installguide/hosts.html#disabling-and-enabling-zones-pods-and-clusters',
108+
docHelp: 'adminguide/hosts.html#disabling-and-enabling-zones-pods-and-clusters',
109109
dataView: true,
110110
defaultArgs: { allocationstate: 'Disabled' },
111111
show: (record) => { return record.allocationstate === 'Enabled' }

ui/src/config/section/infra/hosts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default {
7171
api: 'addHost',
7272
icon: 'plus-outlined',
7373
label: 'label.add.host',
74-
docHelp: 'adminguide/installguide/configuration.html#adding-a-host',
74+
docHelp: 'installguide/configuration.html#adding-a-host',
7575
listView: true,
7676
popup: true,
7777
component: shallowRef(defineAsyncComponent(() => import('@/views/infra/HostAdd.vue')))

0 commit comments

Comments
 (0)