diff --git a/frontend/components/App/Header.vue b/frontend/components/App/Header.vue index 49c67bd..03e0b31 100644 --- a/frontend/components/App/Header.vue +++ b/frontend/components/App/Header.vue @@ -26,24 +26,24 @@ ]; const modals = reactive({ + item: false, location: false, label: false, - item: false, }); const dropdown = [ - { - name: 'Location', - action: () => { - modals.location = true; - }, - }, { name: 'Item / Asset', action: () => { modals.item = true; }, }, + { + name: 'Location', + action: () => { + modals.location = true; + }, + }, { name: 'Label', action: () => { @@ -60,6 +60,7 @@ up the tree --> + @@ -93,7 +94,7 @@