-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: workaround an issue with disabled textarea freezing the browser #2981
Conversation
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
Hi @tomivirkki , this commit cannot be picked to 21.0 by this bot, can you take a look and pick it manually? |
This ticket/PR has been released with platform 22.0.0.beta2 and is also targeting the upcoming stable 22.0.0 version. |
Will it be released to Vaadin flow 14? |
@MBablinski Yes, here's the PR targeted for Vaadin 14 textarea vaadin/vaadin-text-field#584 As a temporary workaround, you can add the same styles to vaadin-text-area yourself: :host([disabled]) ::slotted(textarea) {
user-select: none;
} |
Fixes vaadin/flow-components#2296