Flux version
v1.1.2
Livewire version
v3.5.12
What is the problem?
When flux:editor has a validation error, the error is properly displayed (in red) below the editor but the editor is not getting the red outline. Also, when :invalid property is set dynamically, the outline does not show however when hardcoded it works properly.
Code snippets
<flux:editor wire:model="description" toolbar="heading | bold italic underline highlight | bullet ordered ~ undo redo" label="{{ __('Detailed offer description') }}" :invalid="$errors->has('description')" />
$this->validate(['description' => 'required|string']);
How do you expect it to work?
This works as expected (when :invalid is hardcoded).
<flux:editor wire:model="description" toolbar="heading | bold italic underline highlight | bullet ordered ~ undo redo" label="{{ __('Detailed offer description') }}" :invalid="true" />
Please confirm (incomplete submissions will not be addressed)
Flux version
v1.1.2
Livewire version
v3.5.12
What is the problem?
When flux:editor has a validation error, the error is properly displayed (in red) below the editor but the editor is not getting the red outline. Also, when :invalid property is set dynamically, the outline does not show however when hardcoded it works properly.
Code snippets
How do you expect it to work?
This works as expected (when :invalid is hardcoded).
Please confirm (incomplete submissions will not be addressed)