diff options
| author | Leonardo Bishop <me@leonardobishop.com> | 2024-03-15 00:13:40 +0000 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.com> | 2024-03-15 00:13:40 +0000 |
| commit | c9aefa81ca1950121d2357fc66afe15eb400f537 (patch) | |
| tree | fd6196b55626cea8101cd5a4a00cb2a00d8a495b /pages/editor/item | |
| parent | 1dd5d0fa8bb2ae794b263d1629a662166a9b9d08 (diff) | |
Fix eslint errors
Diffstat (limited to 'pages/editor/item')
| -rw-r--r-- | pages/editor/item/[id].vue | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/pages/editor/item/[id].vue b/pages/editor/item/[id].vue index 451a76d..d6656ab 100644 --- a/pages/editor/item/[id].vue +++ b/pages/editor/item/[id].vue @@ -2,8 +2,8 @@ import { useSessionStore } from '@/stores/session'; definePageMeta({ - layout: 'editor' -}) + layout: 'editor', +}); const sessionStore = useSessionStore(); const route = useRoute(); @@ -24,8 +24,7 @@ const item = sessionStore.getItemById(itemId); </span> </PageHeader> - <div id="options-container"> - </div> + <div id="options-container"></div> </template> <style scoped> @@ -41,4 +40,4 @@ const item = sessionStore.getItemById(itemId); header { border-bottom: 1px solid var(--color-border); } -</style>
\ No newline at end of file +</style> |
