diff options
Diffstat (limited to 'modern/src/common/components/SelectField.js')
-rw-r--r-- | modern/src/common/components/SelectField.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modern/src/common/components/SelectField.js b/modern/src/common/components/SelectField.js index 2ee2f147..35f817a0 100644 --- a/modern/src/common/components/SelectField.js +++ b/modern/src/common/components/SelectField.js @@ -6,6 +6,7 @@ import { useEffectAsync } from '../../reactHelper'; const SelectField = ({ label, + fullWidth, multiple, value, emptyValue = 0, @@ -31,7 +32,7 @@ const SelectField = ({ if (items) { return ( - <FormControl> + <FormControl fullWidth={fullWidth}> <InputLabel>{label}</InputLabel> <Select label={label} |