Skip to content
Snippets Groups Projects
Commit 75852e53 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Merge branch '459-media-type' into 'develop'

Resolve "Display information about the codec used when we click on a track or when browsing library under administration"

Closes #459

See merge request funkwhale/funkwhale!359
parents 9ab3b8b2 bf21f90c
No related branches found
No related tags found
No related merge requests found
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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment