From 078b7d6cc5bc8876dd36c89ee437cf3c0dc3cd56 Mon Sep 17 00:00:00 2001 From: taichan <40626578+tai-cha@users.noreply.github.com> Date: Sun, 19 Jan 2025 20:12:35 +0900 Subject: fix(frontend): アンケート(投票)でリモートの絵文字が正しく描画できない問題の修正 (#15306) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * アンケート選択肢にリモート絵文字を表示 * MkSubNoteContentでのリモート絵文字の描画 * Update Changelog --------- Co-authored-by: kozakura913 <98575220+kozakura913@users.noreply.github.com> --- packages/frontend/src/components/MkPoll.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'packages/frontend/src/components/MkPoll.vue') diff --git a/packages/frontend/src/components/MkPoll.vue b/packages/frontend/src/components/MkPoll.vue index e70ac7ff1a..1b2b3e48ba 100644 --- a/packages/frontend/src/components/MkPoll.vue +++ b/packages/frontend/src/components/MkPoll.vue @@ -10,7 +10,7 @@ SPDX-License-Identifier: AGPL-3.0-only
- + ({{ i18n.tsx._poll.votesCount({ n: choice.votes }) }}) @@ -42,6 +42,8 @@ const props = defineProps<{ noteId: string; poll: NonNullable; readOnly?: boolean; + emojiUrls?: Record; + author?: Misskey.entities.UserLite; }>(); const remaining = ref(-1); -- cgit v1.2.3-freya