Add missing await statement
This commit is contained in:
parent
c05c7b5f1e
commit
e1282c5da3
|
@ -92,7 +92,12 @@
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
// Key events are always for the selected component
|
// Key events are always for the selected component
|
||||||
return handleKeyAction(e, $selectedComponent, e.key, e.ctrlKey || e.metaKey)
|
return await handleKeyAction(
|
||||||
|
e,
|
||||||
|
$selectedComponent,
|
||||||
|
e.key,
|
||||||
|
e.ctrlKey || e.metaKey
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
const handleComponentMenu = async e => {
|
const handleComponentMenu = async e => {
|
||||||
|
|
Loading…
Reference in New Issue