1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-22 14:04:08 +02:00

メディアビュー機能を削除

This commit is contained in:
syuilo
2019-02-21 00:13:46 +09:00
parent c89aa7eb95
commit fa78fe665d
6 changed files with 3 additions and 29 deletions

View File

@@ -17,7 +17,6 @@
:note="note"
:key="note.id"
@update:note="onNoteUpdated(i, $event)"
:media-view="mediaView"
:compact="true"
:mini="true"/>
<p class="date" :key="note.id + '_date'" v-if="i != notes.length - 1 && note._date != _notes[i + 1]._date">
@@ -56,11 +55,6 @@ export default Vue.extend({
props: {
makePromise: {
required: true
},
mediaView: {
type: Boolean,
required: false,
default: false
}
},