From 600e4fab2e1aadc8e5efc640a2c44bf303409231 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=BE=E3=81=A3=E3=81=A1=E3=82=83=E3=81=A8=E3=83=BC?= =?UTF-8?q?=E3=81=AB=E3=82=85?= <17376330+u1-liquid@users.noreply.github.com> Date: Mon, 20 Nov 2023 09:11:12 +0900 Subject: [PATCH] =?UTF-8?q?fix(frontend/deck):=20=E3=82=B3=E3=83=A9?= =?UTF-8?q?=E3=83=A0=E3=81=AE=E3=83=AA=E3=83=AD=E3=83=BC=E3=83=89=E3=83=9C?= =?UTF-8?q?=E3=82=BF=E3=83=B3=E3=81=8C2=E5=80=8B=E5=AD=98=E5=9C=A8?= =?UTF-8?q?=E3=81=99=E3=82=8B=E5=95=8F=E9=A1=8C=E3=82=92=E4=BF=AE=E6=AD=A3?= =?UTF-8?q?=20(MisskeyIO#236)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/ui/deck/column.vue | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/packages/frontend/src/ui/deck/column.vue b/packages/frontend/src/ui/deck/column.vue index 4843f4f49e..1a6b833b45 100644 --- a/packages/frontend/src/ui/deck/column.vue +++ b/packages/frontend/src/ui/deck/column.vue @@ -179,18 +179,6 @@ function getMenu() { }, }]; - if (props.refresher) { - items = [{ - icon: 'ti ti-refresh', - text: i18n.ts.reload, - action: () => { - if (props.refresher) { - props.refresher(); - } - }, - }, ...items]; - } - if (props.menu) { items.unshift(null); items = props.menu.concat(items);