Skip to content

Commit

Permalink
Merge pull request #917 from yaacov/reorder-plan-details-tabs-hooks-a…
Browse files Browse the repository at this point in the history
…t-the-end

🧼 Move hooks tab to the end of the tabs list in plans details page
  • Loading branch information
yaacov authored Feb 14, 2024
2 parents 44b5283 + 7edd254 commit a4f4d14
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@ const PlanDetailsPage_: React.FC<{
name: t('YAML'),
component: () => <PlanYAML plan={obj} loaded={loaded} loadError={loadError} />,
},
{
href: 'hooks',
name: t('Hooks'),
component: () => <PlanHooks plan={obj} loaded={loaded} loadError={loadError} />,
},
{
href: 'vms',
name: t('Virtual Machines'),
Expand All @@ -59,6 +54,11 @@ const PlanDetailsPage_: React.FC<{
name: t('Mappings'),
component: () => <PlanMappings plan={obj} loaded={loaded} loadError={loadError} />,
},
{
href: 'hooks',
name: t('Hooks'),
component: () => <PlanHooks plan={obj} loaded={loaded} loadError={loadError} />,
},
];

return (
Expand Down

0 comments on commit a4f4d14

Please sign in to comment.