diff --git a/packages/frontend/src/ui/deck.vue b/packages/frontend/src/ui/deck.vue index df695b9f4..b91d6d767 100644 --- a/packages/frontend/src/ui/deck.vue +++ b/packages/frontend/src/ui/deck.vue @@ -19,7 +19,6 @@ :class="$style.column" :column="columns.find(c => c.id === id)" :isStacked="ids.length > 1" - @parentFocus="moveFocus(id, $event)" />
@@ -206,11 +205,8 @@ window.addEventListener('wheel', (ev) => { columnsEl.scrollLeft += ev.deltaY; } }); -loadDeck(); -function moveFocus(id: string, direction: 'up' | 'down' | 'left' | 'right') { - // TODO?? -} +loadDeck(); function changeProfile(ev: MouseEvent) { const items = ref([{ diff --git a/packages/frontend/src/ui/deck/antenna-column.vue b/packages/frontend/src/ui/deck/antenna-column.vue index 661f4cab8..d35fa5863 100644 --- a/packages/frontend/src/ui/deck/antenna-column.vue +++ b/packages/frontend/src/ui/deck/antenna-column.vue @@ -1,5 +1,5 @@