New release #275

Merged
b merged 92 commits from staging into main 2024-12-11 16:49:24 +00:00
Showing only changes of commit 5b1654c341 - Show all commits

View File

@ -351,6 +351,10 @@ export const DrawPDFFields = (props: Props) => {
event.stopPropagation()
}
/**
* Handles Escape button-down event and hides all signers dropdowns
* @param event SyntheticEvent event
*/
const handleEscapeButtonDown = (event: React.SyntheticEvent) => {
// get native event
const { nativeEvent } = event