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
merge-requests/757/head
Eliot Berriot 2019-03-05 09:29:36 +01:00
rodzic 83a9a6b01a
commit d89e83298b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: DD6965E2476E5C27
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -0,0 +1 @@
Truncate filename in library file table to ensure correct display of the table. (#735)

Wyświetl plik

@ -73,7 +73,7 @@
</td>
</template>
<template v-else>
<td>{{ scope.obj.source }}</td>
<td :title="scope.obj.source">{{ scope.obj.source | truncate(25) }}</td>
<td></td>
<td></td>
</template>