From 7edd254ab89b491b7258e527f47bfe2aa5b37537 Mon Sep 17 00:00:00 2001 From: Yaacov Zamir Date: Wed, 14 Feb 2024 10:29:57 +0200 Subject: [PATCH] Move hooks tab to the end of the tabs list in plans details page Signed-off-by: Yaacov Zamir --- .../modules/Plans/views/details/PlanDetailsPage.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/forklift-console-plugin/src/modules/Plans/views/details/PlanDetailsPage.tsx b/packages/forklift-console-plugin/src/modules/Plans/views/details/PlanDetailsPage.tsx index 547d70995..93a4959c3 100644 --- a/packages/forklift-console-plugin/src/modules/Plans/views/details/PlanDetailsPage.tsx +++ b/packages/forklift-console-plugin/src/modules/Plans/views/details/PlanDetailsPage.tsx @@ -44,11 +44,6 @@ const PlanDetailsPage_: React.FC<{ name: t('YAML'), component: () => , }, - { - href: 'hooks', - name: t('Hooks'), - component: () => , - }, { href: 'vms', name: t('Virtual Machines'), @@ -59,6 +54,11 @@ const PlanDetailsPage_: React.FC<{ name: t('Mappings'), component: () => , }, + { + href: 'hooks', + name: t('Hooks'), + component: () => , + }, ]; return (