You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug: Quill::make('description')->disabled(true);
field does not work as expected. Even though Quill inherits from Field and has a disabled() method, it does not properly disable the field.
For example: TextArea::make('description')->disabled(true);
works correctly, but Quill does not.
To Reproduce:
Create a form with Quill::make('description')->disabled(true);
Load the form in the browser
The Quill field is still editable despite the disabled(true) call
Expected behavior
The Quill field should be disabled and prevent user input when disabled(true) is applied.
Screenshots:
Desktop:
OS: Windows/Linux
Browser: Chrome, Edge
Version: Latest
Smartphone (please complete the following information):
N/A
Describe the bug:
Quill::make('description')->disabled(true);
field does not work as expected. Even though Quill inherits from Field and has a disabled() method, it does not properly disable the field.
For example:
TextArea::make('description')->disabled(true);
works correctly, but Quill does not.
To Reproduce:
Create a form with Quill::make('description')->disabled(true);
Load the form in the browser
The Quill field is still editable despite the disabled(true) call
Expected behavior
The Quill field should be disabled and prevent user input when disabled(true) is applied.
Screenshots:
Desktop:
OS: Windows/Linux
Browser: Chrome, Edge
Version: Latest
Smartphone (please complete the following information):
N/A
Server:
Platform Version: 14.44
Laravel Version: 11.0
PHP Version: 8.2
Database: PostgreSQL
Database Version: 15
Additional context:
Tested on both Chrome and Edge, and the issue persists.
The text was updated successfully, but these errors were encountered: