From bd345ea2fdb49b9e72401c72a8961d410dfdf474 Mon Sep 17 00:00:00 2001 From: portikM Date: Fri, 13 Oct 2023 19:12:02 -0400 Subject: [PATCH] chore(sandbox): minor fix [KHCP-8987] --- sandbox/components/SandboxNavComponent.vue | 2 +- sandbox/router.ts | 28 +++++++++++----------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/sandbox/components/SandboxNavComponent.vue b/sandbox/components/SandboxNavComponent.vue index ddcca18794..6e29088296 100644 --- a/sandbox/components/SandboxNavComponent.vue +++ b/sandbox/components/SandboxNavComponent.vue @@ -34,8 +34,8 @@ const links = computed((): SandboxNavItem[] => ( { name: 'KInput', to: { name: 'input' } }, { name: 'KLabel', to: { name: 'label' } }, { name: 'KMultiselect', to: { name: 'multiselect' } }, - { name: 'KTabs', to: { name: 'tabs' } }, { name: 'KTable', to: { name: 'table' } }, + { name: 'KTabs', to: { name: 'tabs' } }, ] )) diff --git a/sandbox/router.ts b/sandbox/router.ts index 4b0e0aef52..1382aa78d2 100644 --- a/sandbox/router.ts +++ b/sandbox/router.ts @@ -28,6 +28,12 @@ export default createRouter({ meta: { title: 'Catalog Sandbox' }, component: () => import('./pages/SandboxCatalog.vue'), }, + { + path: 'input', + name: 'input', + meta: { title: 'Input Sandbox' }, + component: () => import('./pages/SandboxInput.vue'), + }, { path: 'label', name: 'label', @@ -35,16 +41,10 @@ export default createRouter({ component: () => import('./pages/SandboxLabel.vue'), }, { - path: 'tabs', - name: 'tabs', - meta: { title: 'Tabs Sandbox' }, - component: () => import('./pages/SandboxTabs.vue'), - }, - { - path: 'input', - name: 'input', - meta: { title: 'Input Sandbox' }, - component: () => import('./pages/SandboxInput.vue'), + path: 'multiselect', + name: 'multiselect', + meta: { title: 'Multiselect Sandbox' }, + component: () => import('./pages/SandboxMultiselect.vue'), }, { path: 'table', @@ -53,10 +53,10 @@ export default createRouter({ component: () => import('./pages/SandboxTable.vue'), }, { - path: 'multiselect', - name: 'multiselect', - meta: { title: 'Multiselect Sandbox' }, - component: () => import('./pages/SandboxMultiselect.vue'), + path: 'tabs', + name: 'tabs', + meta: { title: 'Tabs Sandbox' }, + component: () => import('./pages/SandboxTabs.vue'), }, ], },