Skip to content

Commit

Permalink
feat: Update switch form to checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
rbajollari committed Jan 16, 2024
1 parent 529cf6d commit 3b775d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/AssetForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const AssetForm = ({ assetNames, setAssetNames, selectAll, setSelectAll }) => {
return (
<Form>
<Form.Check
type="switch"
type="checkbox"
id="switch-select-all"
label="SELECT ALL"
inline
Expand All @@ -38,7 +38,7 @@ const AssetForm = ({ assetNames, setAssetNames, selectAll, setSelectAll }) => {
/>
{availableAssets.map((asset, index) => (
<Form.Check
type="switch"
type="checkbox"
id={`switch-${asset}`}
label={asset}
inline
Expand Down

0 comments on commit 3b775d8

Please sign in to comment.