Skip to content

Commit

Permalink
fix: wrap log if too long, to prevent overflow (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
casualmatt authored Apr 11, 2024
1 parent 5e4ef79 commit 0c678b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/manage/logs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ fn LogItem(log: LogEntry) -> impl IntoView {
</ListItem>

<ListItem>
<span class="text-sm text-gray-500">{log.message}</span>
<span class="text-sm text-gray-500 text-wrap">{log.message}</span>
</ListItem>

</tr>
Expand Down

0 comments on commit 0c678b9

Please sign in to comment.