Skip to content

Commit 44ac38c

Browse files
authored
Merge pull request #37 from aaronlei/patch-1
Long text needs to be wrapped, such as url
2 parents 5635296 + 07d1d33 commit 44ac38c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/views/pages/list-activities.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ class="right"
6363
<x-filament-tables::cell width="20%" class="px-4 py-2 align-top sm:first-of-type:ps-6 sm:last-of-type:pe-6">
6464
{{ $this->getFieldLabel($field) }}
6565
</x-filament-tables::cell>
66-
<x-filament-tables::cell width="40%" class="px-4 py-2 align-top break-all !whitespace-normal">
66+
<x-filament-tables::cell width="40%" class="px-4 py-2 align-top break-all whitespace-normal">
6767
@if(is_array($oldValue))
6868
<pre class="text-xs text-gray-500">{{ json_encode($oldValue, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) }}</pre>
6969
@else
7070
{{ $oldValue }}
7171
@endif
7272
</x-filament-tables::cell>
73-
<x-filament-tables::cell width="40%" class="px-4 py-2 align-top break-all !whitespace-normal">
73+
<x-filament-tables::cell width="40%" class="px-4 py-2 align-top break-all whitespace-normal">
7474
@if(is_array($newValue))
7575
<pre class="text-xs text-gray-500">{{ json_encode($newValue, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) }}</pre>
7676
@else

0 commit comments

Comments
 (0)