Skip to content

Commit

Permalink
fix: clear all other selections on selection change
Browse files Browse the repository at this point in the history
  • Loading branch information
mrothauer committed Aug 9, 2021
1 parent 8ef562c commit 2abf990
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions webroot/js/info-sheet.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ MappedRepairEvents.InfoSheet = {
} else {
$(selectorToShow).hide();
$(selectorToHideIfNotSelected).hide();
$(selectorToShow).find('input[type="radio"]').prop('checked', false);
$(selectorToHideIfNotSelected).find('input[type="radio"]').prop('checked', false);
}
});
// init edit forms
Expand Down

0 comments on commit 2abf990

Please sign in to comment.