Merge pull request #138 from beatz174-bit/codex/fix-packaging-type-radio-filter-in-active-pick-list
Fix packaging filter radio selection
This commit is contained in:
@@ -432,9 +432,7 @@ export const ActivePickListScreen = () => {
|
|||||||
<RadioGroup
|
<RadioGroup
|
||||||
row
|
row
|
||||||
value={appliedItemFilter}
|
value={appliedItemFilter}
|
||||||
onChange={(event) =>
|
onChange={(_, value) => setItemFilter(value as 'all' | 'cartons' | 'units')}
|
||||||
setItemFilter(event.target.value as 'all' | 'cartons' | 'units')
|
|
||||||
}
|
|
||||||
sx={{ flexGrow: 1 }}
|
sx={{ flexGrow: 1 }}
|
||||||
>
|
>
|
||||||
<FormControlLabel value="all" control={<Radio />} label="All" />
|
<FormControlLabel value="all" control={<Radio />} label="All" />
|
||||||
|
|||||||
Reference in New Issue
Block a user