diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-02 07:02:08 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-02 07:02:08 +0900 |
| commit | 864b6ad1bd59d86364b9f108bd875d17ffd1e2d9 (patch) | |
| tree | 633261b6f50ef0213906ccff2194883bf905b8c6 /src/client | |
| parent | [MFM] Better hashtag detection (diff) | |
| download | misskey-864b6ad1bd59d86364b9f108bd875d17ffd1e2d9.tar.gz misskey-864b6ad1bd59d86364b9f108bd875d17ffd1e2d9.tar.bz2 misskey-864b6ad1bd59d86364b9f108bd875d17ffd1e2d9.zip | |
Resolve #1826
Diffstat (limited to 'src/client')
7 files changed, 7 insertions, 7 deletions
diff --git a/src/client/app/desktop/views/components/note-detail.vue b/src/client/app/desktop/views/components/note-detail.vue index 01cde76366..0935866510 100644 --- a/src/client/app/desktop/views/components/note-detail.vue +++ b/src/client/app/desktop/views/components/note-detail.vue @@ -39,7 +39,7 @@ </header> <div class="body"> <p v-if="appearNote.cw != null" class="cw"> - <span class="text" v-if="appearNote.cw != ''">{{ appearNote.cw }}</span> + <misskey-flavored-markdown v-if="appearNote.cw != ''" class="text" :text="appearNote.cw" :author="appearNote.user" :i="$store.state.i" :custom-emojis="appearNote.emojis" /> <mk-cw-button v-model="showContent"/> </p> <div class="content" v-show="appearNote.cw == null || showContent"> diff --git a/src/client/app/desktop/views/components/note-preview.vue b/src/client/app/desktop/views/components/note-preview.vue index 4c1c7e7b2d..ee4068dd3e 100644 --- a/src/client/app/desktop/views/components/note-preview.vue +++ b/src/client/app/desktop/views/components/note-preview.vue @@ -5,7 +5,7 @@ <mk-note-header class="header" :note="note" :mini="true"/> <div class="body"> <p v-if="note.cw != null" class="cw"> - <span class="text" v-if="note.cw != ''">{{ note.cw }}</span> + <misskey-flavored-markdown v-if="note.cw != ''" class="text" :text="note.cw" :author="note.user" :i="$store.state.i" :custom-emojis="note.emojis" /> <mk-cw-button v-model="showContent"/> </p> <div class="content" v-show="note.cw == null || showContent"> diff --git a/src/client/app/desktop/views/components/note.sub.vue b/src/client/app/desktop/views/components/note.sub.vue index 5ba22fc76f..05059f2003 100644 --- a/src/client/app/desktop/views/components/note.sub.vue +++ b/src/client/app/desktop/views/components/note.sub.vue @@ -5,7 +5,7 @@ <mk-note-header class="header" :note="note"/> <div class="body"> <p v-if="note.cw != null" class="cw"> - <span class="text" v-if="note.cw != ''">{{ note.cw }}</span> + <misskey-flavored-markdown v-if="note.cw != ''" class="text" :text="note.cw" :author="note.user" :i="$store.state.i" :custom-emojis="note.emojis" /> <mk-cw-button v-model="showContent"/> </p> <div class="content" v-show="note.cw == null || showContent"> diff --git a/src/client/app/desktop/views/components/note.vue b/src/client/app/desktop/views/components/note.vue index 025d489c09..b87aa5b044 100644 --- a/src/client/app/desktop/views/components/note.vue +++ b/src/client/app/desktop/views/components/note.vue @@ -20,7 +20,7 @@ <mk-note-header class="header" :note="appearNote" :mini="mini"/> <div class="body" v-if="appearNote.deletedAt == null"> <p v-if="appearNote.cw != null" class="cw"> - <span class="text" v-if="appearNote.cw != ''">{{ appearNote.cw }}</span> + <misskey-flavored-markdown v-if="appearNote.cw != ''" class="text" :text="appearNote.cw" :author="appearNote.user" :i="$store.state.i" :custom-emojis="appearNote.emojis" /> <mk-cw-button v-model="showContent"/> </p> <div class="content" v-show="appearNote.cw == null || showContent"> diff --git a/src/client/app/mobile/views/components/note-detail.vue b/src/client/app/mobile/views/components/note-detail.vue index 70676c04eb..79eb24189a 100644 --- a/src/client/app/mobile/views/components/note-detail.vue +++ b/src/client/app/mobile/views/components/note-detail.vue @@ -26,7 +26,7 @@ </header> <div class="body"> <p v-if="appearNote.cw != null" class="cw"> - <span class="text" v-if="appearNote.cw != ''">{{ appearNote.cw }}</span> + <misskey-flavored-markdown v-if="appearNote.cw != ''" class="text" :text="appearNote.cw" :author="appearNote.user" :i="$store.state.i" :custom-emojis="appearNote.emojis" /> <mk-cw-button v-model="showContent"/> </p> <div class="content" v-show="appearNote.cw == null || showContent"> diff --git a/src/client/app/mobile/views/components/note.sub.vue b/src/client/app/mobile/views/components/note.sub.vue index 24f5be160c..37d2879ea3 100644 --- a/src/client/app/mobile/views/components/note.sub.vue +++ b/src/client/app/mobile/views/components/note.sub.vue @@ -5,7 +5,7 @@ <mk-note-header class="header" :note="note" :mini="true"/> <div class="body"> <p v-if="note.cw != null" class="cw"> - <span class="text" v-if="note.cw != ''">{{ note.cw }}</span> + <misskey-flavored-markdown v-if="note.cw != ''" class="text" :text="note.cw" :author="note.user" :i="$store.state.i" :custom-emojis="note.emojis" /> <mk-cw-button v-model="showContent"/> </p> <div class="content" v-show="note.cw == null || showContent"> diff --git a/src/client/app/mobile/views/components/note.vue b/src/client/app/mobile/views/components/note.vue index 5cfcdc0f3b..b4c98987d0 100644 --- a/src/client/app/mobile/views/components/note.vue +++ b/src/client/app/mobile/views/components/note.vue @@ -16,7 +16,7 @@ <mk-note-header class="header" :note="appearNote" :mini="true"/> <div class="body" v-if="appearNote.deletedAt == null"> <p v-if="appearNote.cw != null" class="cw"> - <span class="text" v-if="appearNote.cw != ''">{{ appearNote.cw }}</span> + <misskey-flavored-markdown v-if="appearNote.cw != ''" class="text" :text="appearNote.cw" :author="appearNote.user" :i="$store.state.i" :custom-emojis="appearNote.emojis" /> <mk-cw-button v-model="showContent"/> </p> <div class="content" v-show="appearNote.cw == null || showContent"> |