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,
endAdornment: addIconButtons ? (
<InputAdornment position="end">
<IconButton size="small" onClick={() => changeValueWithIncDecButton(1)}>
<IconButton size="small" onClick={() =>
changeValueWithIncDecButton(1)
} onTouchStart={(e)=> e.stopPropagation()}>
<AddIcon sx={{
color: 'white'
}} />{" "}
</IconButton>
<IconButton size="small" onClick={() => changeValueWithIncDecButton(-1)}>
<IconButton onTouchStart={(e)=> e.stopPropagation()} size="small" onClick={() =>
changeValueWithIncDecButton(-1)
}>
<RemoveIcon sx={{
color: 'white'
}} />{" "}