From 4cb74316815b7ef4092cec3aa7989e685ad6c522 Mon Sep 17 00:00:00 2001 From: Natty Date: Mon, 6 Nov 2023 18:07:00 +0100 Subject: [PATCH] Frontend: Fixed renote visibilities not appearing --- 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 ef88156..825a494 100644 --- a/fe_calckey/frontend/client/src/components/MkRenoteButton.vue +++ b/fe_calckey/frontend/client/src/components/MkRenoteButton.vue @@ -118,7 +118,7 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => { }); } - if (["public", "home"].includes(props.note.visibility)) { + if (["public", "home", "Public", "home"].includes(props.note.visibility)) { buttonActions.push({ text: `${i18n.ts.renote} (${i18n.ts._visibility.home})`, icon: "ph-house ph-bold ph-lg",