4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-22 17:07:05 +00:00

Fixes #4472 -- Set max-width on audit log columns.

This commit is contained in:
Buster "Silver Eagle" Neece 2021-08-10 07:58:28 -05:00
parent 45515fcf32
commit a418f5c130
No known key found for this signature in database
GPG Key ID: 6D9E12FF03411F4E

View File

@ -76,8 +76,12 @@ $assets
<tbody>
<tr v-for="row in changes">
<td class="pl-0">{{ row.field }}</td>
<td><pre>{{ row.from }}</pre></td>
<td class="pr-0"><pre>{{ row.to }}</pre></td>
<td>
<pre style="max-width: 250px;">{{ row.from }}</pre>
</td>
<td class="pr-0">
<pre style="max-width: 250px;">{{ row.to }}</pre>
</td>
</tr>
</tbody>
</table>