TF-750 Fix padding overflow for autocomplete advanced search
This commit is contained in:
@@ -129,7 +129,9 @@ class ResponsiveUtils {
|
||||
if (BuildUtils.isWeb) {
|
||||
return isTabletLarge(context);
|
||||
} else {
|
||||
return isLandscapeTablet(context);
|
||||
return !isLandscapeMobile(context) && (isLandscapeTablet(context) ||
|
||||
isTabletLarge(context) ||
|
||||
isDesktop(context));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user