Skip to content

Commit

Permalink
Merge pull request #121 from Propy/dev
Browse files Browse the repository at this point in the history
chore(PropyKeysCollectionFilterZoneInner): mobile improvement
  • Loading branch information
JayWelsh authored Feb 20, 2024
2 parents baa89ce + bf25d27 commit dc2e145
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/PropyKeysCollectionFilterZoneInner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ const PropyKeysCollectionFilterZoneInner = (props: ICollectionFilterZone) => {
<Autocomplete
id="country-filter"
options={uniqueCountries}
sx={{ width: 300 }}
sx={{ width: 300, maxWidth: '100%' }}
className={classes.inputSpacerSmall}
renderInput={(params) => <TextField {...params} label="Country" />}
onChange={(event, value, reason, details) => {
Expand All @@ -170,7 +170,7 @@ const PropyKeysCollectionFilterZoneInner = (props: ICollectionFilterZone) => {
<Autocomplete
id="city-filter"
options={uniqueCities}
sx={{ width: 300 }}
sx={{ width: 300, maxWidth: '100%' }}
className={classes.inputSpacer}
onChange={(event, value, reason, details) => {
if(value) {
Expand Down

0 comments on commit dc2e145

Please sign in to comment.