Skip to content

Commit e617415

Browse files
committed
Fixed how the grid im is rendering the props
1 parent 5f3a9b8 commit e617415

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

resources/views/grid-view/grid-view-item.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@
2525
<h3 class="font-bold leading-6 text-gray-900">
2626
@if ($hasDefaultAction)
2727
<a href="#!" class="hover:underline" wire:click.prevent="onCardClick({{ $model->getKey() }})">
28-
{{ $title }}
28+
{!! $title !!}
2929
</a>
3030
@else
31-
{{ $title }}
31+
{!! $title !!}
3232
@endif
3333
</h3>
3434
@if ($subtitle)
3535
<span class="text-sm text-gray-600">
36-
{{ $subtitle }}
36+
{!! $subtitle !!}
3737
</span>
3838
@endif
3939
</div>
@@ -45,7 +45,7 @@
4545

4646
@if (isset($description))
4747
<p class="line-clamp-3 mt-2">
48-
{{ $description }}
48+
{!! $description !!}
4949
</p>
5050
@endif
5151
</div>

0 commit comments

Comments
 (0)