feat: Use audio tag instead of download file button (#1749)
This commit is contained in:
parent
d92a6a3078
commit
9315cb81e8
2 changed files with 6 additions and 1 deletions
|
@ -9,6 +9,8 @@ module FileTypeHelper
|
||||||
'image/bmp'
|
'image/bmp'
|
||||||
].include?(content_type)
|
].include?(content_type)
|
||||||
|
|
||||||
|
return :audio if content_type.include?('audio/')
|
||||||
|
|
||||||
:file
|
:file
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -21,8 +21,11 @@
|
||||||
:url="attachment.data_url"
|
:url="attachment.data_url"
|
||||||
:readable-time="readableTime"
|
:readable-time="readableTime"
|
||||||
/>
|
/>
|
||||||
|
<audio v-else-if="attachment.file_type === 'audio'" controls>
|
||||||
|
<source :src="attachment.data_url" />
|
||||||
|
</audio>
|
||||||
<bubble-file
|
<bubble-file
|
||||||
v-if="attachment.file_type !== 'image'"
|
v-else
|
||||||
:url="attachment.data_url"
|
:url="attachment.data_url"
|
||||||
:readable-time="readableTime"
|
:readable-time="readableTime"
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in a new issue