mirror of
https://github.com/Qortal/qortal-mobile.git
synced 2025-04-24 20:07:52 +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,
|
...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'
|
||||||
}} />{" "}
|
}} />{" "}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user