1
0
Fork 0
mirror of synced 2024-10-03 02:27:06 +13:00

Add missing await statement

This commit is contained in:
Andrew Kingston 2022-09-05 14:55:17 +01:00
parent c05c7b5f1e
commit e1282c5da3

View file

@ -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 => {