Skip to content

Commit

Permalink
fix(text-area): make readOnly prop writable (#11218)
Browse files Browse the repository at this point in the history
**Related Issue:** #11217 #10731

## Summary

Removes unintentional `@readonly` on `readOnly` prop. 

For context, with #10310 any props with the `@readonly` tag will be made
read-only.
  • Loading branch information
jcfranco authored Jan 7, 2025
1 parent 2bd082f commit 0cbf766
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,6 @@ export class TextArea
/**
* When `true`, the component's `value` can be read, but cannot be modified.
*
* @readonly
* @mdn [readOnly](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly)
*/
@property({ reflect: true }) readOnly = false;
Expand Down

0 comments on commit 0cbf766

Please sign in to comment.