Skip to content

Commit

Permalink
chore(sandbox): minor fix [KHCP-8987]
Browse files Browse the repository at this point in the history
  • Loading branch information
portikM committed Oct 17, 2023
1 parent 31e6a02 commit bd345ea
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion sandbox/components/SandboxNavComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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' } },
]
))
</script>
Expand Down
28 changes: 14 additions & 14 deletions sandbox/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,23 +28,23 @@ 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',
meta: { title: 'Label Sandbox' },
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',
Expand All @@ -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'),
},
],
},
Expand Down

0 comments on commit bd345ea

Please sign in to comment.