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
Previously, when a `<v-menu />` with `:close-on-content-click="false"`
contained a textarea, an enter press inside the textarea would do
nothing and not produce a new line. Now, it will allow a new line to be
typed into the textarea when pressing enter.
This last worked in Vuetify v3.5.14 and was broken starting in v3.5.15.
The fix for vuetifyjs#19519 in 85ba4a8 caused this issue.
fixesvuetifyjs#19767
Environment
Vuetify Version: 3.6.3
Last working version: 3.5.14
Vue Version: 3.4.27
Browsers: Chrome 124.0.0.0
OS: Mac OS 10.15.7
Steps to reproduce
<v-menu />
with:close-on-content-click="false"
.<v-textarea/>
or a plain<textarea>
in the menu.<v-menu />
, focus the<textarea>
, and press enter while focus is in the textarea.Expected Behavior
A new line is typed into the textarea.
Actual Behavior
The menu dismisses.
Reproduction Link
https://play.vuetifyjs.com/#...
Other comments
3.5.14 (correct behavior):
3.5.15 (incorrect behavior):
Possibly related code change: 85ba4a8
The text was updated successfully, but these errors were encountered: