From df275de90508608e863fe3c47932132c65e507f1 Mon Sep 17 00:00:00 2001 From: Natty Date: Sat, 30 Sep 2023 21:16:56 +0200 Subject: [PATCH] Frontend: Fixed a wrong renote cancel condition --- fe_calckey/frontend/client/src/components/MkRenoteButton.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe_calckey/frontend/client/src/components/MkRenoteButton.vue b/fe_calckey/frontend/client/src/components/MkRenoteButton.vue index eb2fcb2..509d3ec 100644 --- a/fe_calckey/frontend/client/src/components/MkRenoteButton.vue +++ b/fe_calckey/frontend/client/src/components/MkRenoteButton.vue @@ -230,7 +230,7 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => { }); } - if (hasRenotedBefore) { + if (hasRenotedBefore.value) { buttonActions.push({ text: i18n.ts.unrenote, icon: "ph-trash ph-bold ph-lg",