diff --git a/assets/js/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/SystemSignaturesContent/SystemSignaturesContent.tsx b/assets/js/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/SystemSignaturesContent/SystemSignaturesContent.tsx index def821ce..28df0b2c 100644 --- a/assets/js/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/SystemSignaturesContent/SystemSignaturesContent.tsx +++ b/assets/js/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/SystemSignaturesContent/SystemSignaturesContent.tsx @@ -104,7 +104,11 @@ export function SystemSignaturesContent({ }, [selectable, clipboardContent]); useHotkey(true, ['a'], handleSelectAll); - useHotkey(false, ['Backspace', 'Delete'], handleDeleteSelected); + useHotkey(false, ['Backspace', 'Delete'], (event: KeyboardEvent) => { + event.preventDefault(); + event.stopPropagation(); + handleDeleteSelected(); + }); const [nameColumnWidth, setNameColumnWidth] = useState('auto'); const handleResize = useCallback(() => {