Skip to content

Commit

Permalink
Prevent horizontal scrolling with long cache keys
Browse files Browse the repository at this point in the history
  • Loading branch information
jessarcher committed Nov 2, 2023
1 parent a151926 commit 8ababbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/livewire/cache.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@
@foreach ($cacheKeyInteractions->take(100) as $interaction)
<tr class="h-2 first:h-0"></tr>
<tr wire:key="{{ $interaction->key }}">
<x-pulse::td>
<code class="block text-xs text-gray-900 dark:text-gray-100">
<x-pulse::td class="max-w-[1px]">
<code class="block text-xs text-gray-900 dark:text-gray-100 truncate" title="{{ $interaction-key }}">
{{ $interaction->key }}
</code>
</x-pulse::td>
Expand Down

0 comments on commit 8ababbf

Please sign in to comment.