mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-06 03:09:55 +02:00
Fixed #459: audio mimetype not showing up on track detail and list
This commit is contained in:
parent
9ab3b8b289
commit
bf21f90c2b
3 changed files with 14 additions and 2 deletions
1
changes/changelog.d/459.bugfix
Normal file
1
changes/changelog.d/459.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fixed audio mimetype not showing up on track detail and list (#459)
|
|
@ -87,6 +87,17 @@
|
|||
<translate>N/A</translate>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<translate>Type</translate>
|
||||
</td>
|
||||
<td v-if="file.mimetype">
|
||||
{{ file.mimetype }}
|
||||
</td>
|
||||
<td v-else>
|
||||
<translate>N/A</translate>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
|
|
@ -57,8 +57,8 @@
|
|||
<td>
|
||||
<human-date :date="scope.obj.creation_date"></human-date>
|
||||
</td>
|
||||
<td v-if="scope.obj.audio_mimetype">
|
||||
{{ scope.obj.audio_mimetype }}
|
||||
<td v-if="scope.obj.mimetype">
|
||||
{{ scope.obj.mimetype }}
|
||||
</td>
|
||||
<td v-else>
|
||||
<translate>N/A</translate>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue