mirror of
https://github.com/Qortal/qortal-mobile.git
synced 2025-04-25 04:17:53 +00:00
fix bug when sending qort input not working triple tap
This commit is contained in:
parent
24f133acf5
commit
3e1e38838d
@ -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'
|
||||
}} />{" "}
|
||||
|
Loading…
x
Reference in New Issue
Block a user