FIX[WebApp]: PreventDefault when clicking on the Format Editor
Fixes #112
This commit is contained in:
committed by
Nicolás Hatcher Andrés
parent
9e5b959ccc
commit
d55845e69f
@@ -35,6 +35,11 @@ const FormatPicker = (properties: FormatPickerProps) => {
|
||||
label={t("num_fmt.label")}
|
||||
name="format_code"
|
||||
onChange={(event) => setFormatCode(event.target.value)}
|
||||
onKeyDown={(event) => {
|
||||
event.stopPropagation();
|
||||
}}
|
||||
spellCheck="false"
|
||||
onClick={(event) => event.stopPropagation()}
|
||||
/>
|
||||
</DialogContent>
|
||||
<DialogActions>
|
||||
|
||||
Reference in New Issue
Block a user