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

Merge branch '735-table-truncate' into 'develop'

Fix #735: library view doesn't like long titles names

Closes #735

See merge request funkwhale/funkwhale!640
parents 701bffaf f28aa5d8
Branches
Tags
No related merge requests found
Truncate filename in library file table to ensure correct display of the table. (#735)
...@@ -73,7 +73,7 @@ ...@@ -73,7 +73,7 @@
</td> </td>
</template> </template>
<template v-else> <template v-else>
<td>{{ scope.obj.source }}</td> <td :title="scope.obj.source">{{ scope.obj.source | truncate(25) }}</td>
<td></td> <td></td>
<td></td> <td></td>
</template> </template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment