From 339b07b6f3c48137d41823b518ac63e8e1368802 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernardo=20De=20Marco=20Gon=C3=A7alves?= Date: Thu, 13 Feb 2025 20:05:29 -0300 Subject: [PATCH 1/3] fix add clusters link --- ui/src/config/section/infra/clusters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/config/section/infra/clusters.js b/ui/src/config/section/infra/clusters.js index 8b2f37d5b7bb..a89a419fadfd 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'))) From 49baead928f77365d725fb6e0cadee29e34bc46f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernardo=20De=20Marco=20Gon=C3=A7alves?= Date: Thu, 13 Feb 2025 20:05:40 -0300 Subject: [PATCH 2/3] fix add hosts link --- ui/src/config/section/infra/hosts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/config/section/infra/hosts.js b/ui/src/config/section/infra/hosts.js index de42762c274b..f13029b61ca0 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'))) From f1d5f79f45fb61f9d2c0599b97b00c60ad57b4c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernardo=20De=20Marco=20Gon=C3=A7alves?= Date: Thu, 13 Feb 2025 20:27:18 -0300 Subject: [PATCH 3/3] fix links in the Enabled and Disable Clusters UI forms --- ui/src/config/section/infra/clusters.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/config/section/infra/clusters.js b/ui/src/config/section/infra/clusters.js index a89a419fadfd..a3dda2d760cb 100644 --- a/ui/src/config/section/infra/clusters.js +++ b/ui/src/config/section/infra/clusters.js @@ -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' }