Skip to content

Commit

Permalink
changed truncate from 75 chars to 50
Browse files Browse the repository at this point in the history
This should fit better on screen and fix Issue #886 which I reported.
  • Loading branch information
lstables authored May 5, 2020
1 parent b3a1fef commit dd68e76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/screens/logs/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</tr>

<template slot="row" slot-scope="slotProps">
<td :title="slotProps.entry.content.message">{{truncate(slotProps.entry.content.message, 75)}}</td>
<td :title="slotProps.entry.content.message">{{truncate(slotProps.entry.content.message, 50)}}</td>

<td class="table-fit">
<span class="badge font-weight-light" :class="'badge-'+logLevelClass(slotProps.entry.content.level)">
Expand Down

0 comments on commit dd68e76

Please sign in to comment.