Skip to content

Commit a22b82c

Browse files
fix(frontend): フォロー承認通知でフォローされた際のメッセージ内の絵文字が表示されない問題を修正 (#17164)
* fix(frontend): フォロー承認通知でフォローされた際のメッセージ内の絵文字が表示されない問題を修正 * update changelog
1 parent 28f5b2f commit a22b82c

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
- モザイクの格子のサイズが画像の縦横比によって長方形となる問題を修正
3232
- モザイクの色味がより自然になるように修正
3333
- ぼかしに不自然な縦線が入る問題を修正
34+
- Fix: フォロー承認通知でフォローされた際のメッセージの絵文字が表示されない問題を修正
3435

3536
### Server
3637
- Enhance: OAuthのクライアント情報取得(Client Information Discovery)において、IndieWeb Living Standard 11 July 2024で定義されているJSONドキュメント形式に対応しました

packages/frontend/src/components/MkNotification.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ SPDX-License-Identifier: AGPL-3.0-only
136136
<div :class="$style.text" style="opacity: 0.6;">{{ i18n.ts.followRequestAccepted }}</div>
137137
<div v-if="notification.message" :class="$style.text" style="opacity: 0.6; font-style: oblique;">
138138
<i class="ti ti-quote" :class="$style.quote"></i>
139-
<span>{{ notification.message }}</span>
139+
<Mfm :text="notification.message" :author="notification.user" :plain="true" :nowrap="true"/>
140140
<i class="ti ti-quote" :class="$style.quote"></i>
141141
</div>
142142
</template>

0 commit comments

Comments
 (0)