diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2019-07-07 18:59:54 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-07-07 18:59:54 +0900 |
| commit | d39aabc143248d34df2c2b047e103646779088f9 (patch) | |
| tree | 9747f4f75577d798912ede4259253381eb84fcd8 /src/client/app/common | |
| parent | 公開以外へのリプライ時元の公開範囲で指定したユーザ... (diff) | |
| download | sharkey-d39aabc143248d34df2c2b047e103646779088f9.tar.gz sharkey-d39aabc143248d34df2c2b047e103646779088f9.tar.bz2 sharkey-d39aabc143248d34df2c2b047e103646779088f9.zip | |
Fix notification wrap (#5118)
Diffstat (limited to 'src/client/app/common')
| -rw-r--r-- | src/client/app/common/views/deck/deck.notification.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/app/common/views/deck/deck.notification.vue b/src/client/app/common/views/deck/deck.notification.vue index 522f9b0d35..e1d9669002 100644 --- a/src/client/app/common/views/deck/deck.notification.vue +++ b/src/client/app/common/views/deck/deck.notification.vue @@ -12,7 +12,7 @@ </header> <router-link class="note-ref" :to="notification.note | notePage" :title="getNoteSummary(notification.note)"> <fa icon="quote-left"/> - <mfm :text="getNoteSummary(notification.note)" :plain="true" :custom-emojis="notification.note.emojis"/> + <mfm :text="getNoteSummary(notification.note)" :plain="true" :nowrap="true" :custom-emojis="notification.note.emojis"/> <fa icon="quote-right"/> </router-link> </div> @@ -30,7 +30,7 @@ </header> <router-link class="note-ref" :to="notification.note | notePage" :title="getNoteSummary(notification.note.renote)"> <fa icon="quote-left"/> - <mfm :text="getNoteSummary(notification.note.renote)" :plain="true" :custom-emojis="notification.note.renote.emojis"/> + <mfm :text="getNoteSummary(notification.note.renote)" :plain="true" :nowrap="true" :custom-emojis="notification.note.renote.emojis"/> <fa icon="quote-right"/> </router-link> </div> @@ -74,7 +74,7 @@ </header> <router-link class="note-ref" :to="notification.note | notePage" :title="getNoteSummary(notification.note)"> <fa icon="quote-left"/> - <mfm :text="getNoteSummary(notification.note)" :plain="true" :custom-emojis="notification.note.emojis"/> + <mfm :text="getNoteSummary(notification.note)" :plain="true" :nowrap="true" :custom-emojis="notification.note.emojis"/> <fa icon="quote-right"/> </router-link> </div> |