Skip to content

Commit

Permalink
Merge pull request #887 from lstables/lstables-fix-log-styling
Browse files Browse the repository at this point in the history
[3.x] changed truncate from 75 chars to 50
  • Loading branch information
taylorotwell authored May 5, 2020
2 parents b3a1fef + dd68e76 commit 1dd213e
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 1dd213e

Please sign in to comment.