Skip to content

Commit

Permalink
Fixed #9
Browse files Browse the repository at this point in the history
  • Loading branch information
sweebee authored Jun 2, 2023
1 parent ed44942 commit 2e02b5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/text-input.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
:required="$isRequired()"
:state-path="$getStatePath()"
>
<div x-data="{characterLimit: {{ $getCharacterLimit() }}, characterCount: {{ strlen($getState()) }}}" {{ $attributes->merge($getExtraAttributes())->class(['filament-forms-text-input-component flex items-center space-x-2 rtl:space-x-reverse group']) }}>
<div x-data="{characterLimit: {{ $getCharacterLimit() }}, characterCount: {{ mb_strlen($getState()) }}}" {{ $attributes->merge($getExtraAttributes())->class(['filament-forms-text-input-component flex items-center space-x-2 rtl:space-x-reverse group']) }}>
@if (($prefixAction = $getPrefixAction()) && (! $prefixAction->isHidden()))
{{ $prefixAction }}
@endif
Expand Down

0 comments on commit 2e02b5e

Please sign in to comment.