forked from mirrors/misskey
fix(frontend): フォロー承認通知でフォローされた際のメッセージ内の絵文字が表示されない問題を修正 (#17164)
* fix(frontend): フォロー承認通知でフォローされた際のメッセージ内の絵文字が表示されない問題を修正 * update changelog
This commit is contained in:
@@ -31,6 +31,7 @@
|
|||||||
- モザイクの格子のサイズが画像の縦横比によって長方形となる問題を修正
|
- モザイクの格子のサイズが画像の縦横比によって長方形となる問題を修正
|
||||||
- モザイクの色味がより自然になるように修正
|
- モザイクの色味がより自然になるように修正
|
||||||
- ぼかしに不自然な縦線が入る問題を修正
|
- ぼかしに不自然な縦線が入る問題を修正
|
||||||
|
- Fix: フォロー承認通知でフォローされた際のメッセージの絵文字が表示されない問題を修正
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
- Enhance: OAuthのクライアント情報取得(Client Information Discovery)において、IndieWeb Living Standard 11 July 2024で定義されているJSONドキュメント形式に対応しました
|
- Enhance: OAuthのクライアント情報取得(Client Information Discovery)において、IndieWeb Living Standard 11 July 2024で定義されているJSONドキュメント形式に対応しました
|
||||||
|
|||||||
@@ -136,7 +136,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||||||
<div :class="$style.text" style="opacity: 0.6;">{{ i18n.ts.followRequestAccepted }}</div>
|
<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;">
|
<div v-if="notification.message" :class="$style.text" style="opacity: 0.6; font-style: oblique;">
|
||||||
<i class="ti ti-quote" :class="$style.quote"></i>
|
<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>
|
<i class="ti ti-quote" :class="$style.quote"></i>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user