summaryrefslogtreecommitdiff
path: root/packages/frontend/src/ui/deck/list-column.vue
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-05-20 10:12:18 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-05-20 10:12:18 +0900
commitd177f97928c7223349f65820b931c6884dafe2f7 (patch)
tree401f31ede66c53c0fe70300da931b5a561f70481 /packages/frontend/src/ui/deck/list-column.vue
parentMerge branch 'develop' of https://github.com/misskey-dev/misskey into develop (diff)
downloadsharkey-d177f97928c7223349f65820b931c6884dafe2f7.tar.gz
sharkey-d177f97928c7223349f65820b931c6884dafe2f7.tar.bz2
sharkey-d177f97928c7223349f65820b931c6884dafe2f7.zip
refactor
Diffstat (limited to 'packages/frontend/src/ui/deck/list-column.vue')
-rw-r--r--packages/frontend/src/ui/deck/list-column.vue3
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/frontend/src/ui/deck/list-column.vue b/packages/frontend/src/ui/deck/list-column.vue
index 165b654514..439db8815a 100644
--- a/packages/frontend/src/ui/deck/list-column.vue
+++ b/packages/frontend/src/ui/deck/list-column.vue
@@ -1,5 +1,5 @@
<template>
-<XColumn :menu="menu" :column="column" :isStacked="isStacked" @parentFocus="$event => emit('parent-focus', $event)">
+<XColumn :menu="menu" :column="column" :isStacked="isStacked">
<template #header>
<i class="ti ti-list"></i><span style="margin-left: 8px;">{{ column.name }}</span>
</template>
@@ -23,7 +23,6 @@ const props = defineProps<{
const emit = defineEmits<{
(ev: 'loaded'): void;
- (ev: 'parent-focus', direction: 'up' | 'down' | 'left' | 'right'): void;
}>();
let timeline = $shallowRef<InstanceType<typeof MkTimeline>>();