mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
Fix payment method select on book table on Android app
This commit is contained in:
parent
f65cef2d8d
commit
8cf6b3bd32
@ -148,7 +148,7 @@ const BookControl = ({
|
||||
</Grid>
|
||||
) : null}
|
||||
|
||||
{width > mediumToolbarWidth ? (
|
||||
{width > mediumToolbarWidth && window.NativeRobosats === undefined ? (
|
||||
<Grid item>
|
||||
<AutocompletePayments
|
||||
sx={{
|
||||
@ -176,7 +176,9 @@ const BookControl = ({
|
||||
</Grid>
|
||||
) : null}
|
||||
|
||||
{width > smallestToolbarWidth && width < mediumToolbarWidth ? (
|
||||
{/* Native Android app must always show the Select, as the on display keyboard does not play well with the book table component */}
|
||||
{(width > smallestToolbarWidth && width < mediumToolbarWidth) ||
|
||||
window.NativeRobosats != undefined ? (
|
||||
<Grid item>
|
||||
<Select
|
||||
sx={{
|
||||
|
Loading…
Reference in New Issue
Block a user