summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorかっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>2026-02-15 11:49:37 +0900
committerGitHub <noreply@github.com>2026-02-15 11:49:37 +0900
commita22b82c41484beeed6e0afd788605b575d55dbfa (patch)
tree10f5e3aa573c94a104351d64a358680f7a427941
parentfix(frontend): ぼかし・塗りつぶし・モザイクの画像エフェ... (diff)
downloadmisskey-a22b82c41484beeed6e0afd788605b575d55dbfa.tar.gz
misskey-a22b82c41484beeed6e0afd788605b575d55dbfa.tar.bz2
misskey-a22b82c41484beeed6e0afd788605b575d55dbfa.zip
fix(frontend): フォロー承認通知でフォローされた際のメッセージ内の絵文字が表示されない問題を修正 (#17164)
* fix(frontend): フォロー承認通知でフォローされた際のメッセージ内の絵文字が表示されない問題を修正 * update changelog
-rw-r--r--CHANGELOG.md1
-rw-r--r--packages/frontend/src/components/MkNotification.vue2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index deae7133f3..e519d581ad 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -31,6 +31,7 @@
- モザイクの格子のサイズが画像の縦横比によって長方形となる問題を修正
- モザイクの色味がより自然になるように修正
- ぼかしに不自然な縦線が入る問題を修正
+- Fix: フォロー承認通知でフォローされた際のメッセージの絵文字が表示されない問題を修正
### Server
- Enhance: OAuthのクライアント情報取得(Client Information Discovery)において、IndieWeb Living Standard 11 July 2024で定義されているJSONドキュメント形式に対応しました
diff --git a/packages/frontend/src/components/MkNotification.vue b/packages/frontend/src/components/MkNotification.vue
index 30494d5362..6c70358c2c 100644
--- a/packages/frontend/src/components/MkNotification.vue
+++ b/packages/frontend/src/components/MkNotification.vue
@@ -136,7 +136,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<div :class="$style.text" style="opacity: 0.6;">{{ i18n.ts.followRequestAccepted }}</div>
<div v-if="notification.message" :class="$style.text" style="opacity: 0.6; font-style: oblique;">
<i class="ti ti-quote" :class="$style.quote"></i>
- <span>{{ notification.message }}</span>
+ <Mfm :text="notification.message" :author="notification.user" :plain="true" :nowrap="true"/>
<i class="ti ti-quote" :class="$style.quote"></i>
</div>
</template>