Skip to content

Commit

Permalink
Update text-input.blade.php
Browse files Browse the repository at this point in the history
  • Loading branch information
sweebee authored Jun 7, 2023
1 parent 2286c9b commit acabba8
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: {{ mb_strlen($getState() ? $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() ? $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 acabba8

Please sign in to comment.