fix metadata column

This commit is contained in:
jonaswinkler 2021-01-01 22:44:10 +01:00
parent bac0dbb70b
commit ebdddc4fe4
2 changed files with 4 additions and 1 deletions

View File

@ -16,7 +16,7 @@
<tbody>
<tr *ngFor="let m of metadata">
<td>{{m.prefix}}:{{m.key}}</td>
<td>{{m.value}}</td>
<td class="metadata-column">{{m.value}}</td>
</tr>
</tbody>
</table>

View File

@ -0,0 +1,3 @@
.metadata-column {
overflow-wrap: anywhere;
}