windmill-components 1.82.3 → 1.82.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -144,8 +144,7 @@ function handlePaste(event) {
|
|
|
144
144
|
function keydown(event) {
|
|
145
145
|
// Ignore keydown events if the user is typing in monaco
|
|
146
146
|
let classes = event.target?.['className'];
|
|
147
|
-
if (
|
|
148
|
-
['INPUT', 'TEXTAREA'].includes(document.activeElement?.tagName)) {
|
|
147
|
+
if (typeof classes === 'string' && classes.includes('inputarea')) {
|
|
149
148
|
return;
|
|
150
149
|
}
|
|
151
150
|
switch (event.key) {
|