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

This commit is contained in:
syuilo 2019-02-21 00:13:46 +09:00
parent c89aa7eb95
commit fa78fe665d
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
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
}
},