forked from AkkomaGang/akkoma-fe
Hide unknown type attachments, polish the upload preview styling
This commit is contained in:
parent
092848b32b
commit
280758f867
3 changed files with 4 additions and 2 deletions
|
@ -24,7 +24,7 @@ const Attachment = {
|
|||
return this.nsfw && this.hideNsfwLocal && !this.showHidden
|
||||
},
|
||||
isEmpty () {
|
||||
return this.type === 'html' && !this.attachment.oembed
|
||||
return (this.type === 'html' && !this.attachment.oembed) || this.type === 'unknown'
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
|
|
@ -80,6 +80,8 @@
|
|||
}
|
||||
|
||||
img.media-upload {
|
||||
margin-bottom: -2px;
|
||||
max-height: 300px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
flex: 1;
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
<i class="icon-cancel" @click="clearError"></i>
|
||||
</div>
|
||||
<div class="attachments">
|
||||
<div class="attachment" v-for="file in newStatus.files">
|
||||
<div class="attachment base03-border" v-for="file in newStatus.files">
|
||||
<i class="fa icon-cancel" @click="removeMediaFile(file)"></i>
|
||||
<img class="thumbnail media-upload" :src="file.image" v-if="type(file) === 'image'"></img>
|
||||
<video v-if="type(file) === 'video'" :src="file.image" controls></video>
|
||||
|
|
Loading…
Reference in a new issue