Skip to content

Commit

Permalink
Fixed issue with checkboxes on source list
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Aug 23, 2021
1 parent cbbcb10 commit 000bf13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/metadata/domain/source/component/SourceList.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default function SourceList({ entities, onDelete, onEnable, onChangeGroup
{onEnable && isAdmin ?
<Form.Check
type="switch"
id="custom-switch"
id={`enable-switch-${source.id}`}
size="lg"
aria-label={translator(source.serviceEnabled ? 'label.disable' : 'label.enable')}
onChange={({ target: { checked } }) => onEnable(source, checked)}
Expand Down

0 comments on commit 000bf13

Please sign in to comment.