Skip to content

Commit

Permalink
Merge pull request #5 from 199ocero/bug-allow-html-always-true
Browse files Browse the repository at this point in the history
fix allow html always true
  • Loading branch information
199ocero authored Jan 8, 2024
2 parents 4e018fc + bcca56b commit fb7a911
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p class="text-sm text-gray-600 dark:text-gray-400">
@if($isHtmlAllowed)
@if ($isHtmlAllowed())
{!! $getState() ?? $getPlaceholder() !!}
@else
{{ $getState() ?? $getPlaceholder() }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<h3 class="text-base font-semibold text-gray-800 dark:text-white">
@if($isHtmlAllowed)
@if ($isHtmlAllowed())
{!! $getState() ?? $getPlaceholder() !!}
@else
{{ $getState() ?? $getPlaceholder() }}
Expand Down

0 comments on commit fb7a911

Please sign in to comment.