fix bug when sending qort input not working triple tap

This commit is contained in:
PhilReact 2025-04-07 10:20:07 +03:00
parent 24f133acf5
commit 3e1e38838d

View File

@ -130,12 +130,17 @@ export const BoundedNumericTextField = ({
...props?.InputProps, ...props?.InputProps,
endAdornment: addIconButtons ? ( endAdornment: addIconButtons ? (
<InputAdornment position="end"> <InputAdornment position="end">
<IconButton size="small" onClick={() => changeValueWithIncDecButton(1)}> <IconButton size="small" onClick={() =>
changeValueWithIncDecButton(1)
} onTouchStart={(e)=> e.stopPropagation()}>
<AddIcon sx={{ <AddIcon sx={{
color: 'white' color: 'white'
}} />{" "} }} />{" "}
</IconButton> </IconButton>
<IconButton size="small" onClick={() => changeValueWithIncDecButton(-1)}> <IconButton onTouchStart={(e)=> e.stopPropagation()} size="small" onClick={() =>
changeValueWithIncDecButton(-1)
}>
<RemoveIcon sx={{ <RemoveIcon sx={{
color: 'white' color: 'white'
}} />{" "} }} />{" "}