Skip to content

Commit

Permalink
🐞 Double click is needed to deselect (#444) (#445)
Browse files Browse the repository at this point in the history
Parent issue: sequentech/meta#911
  • Loading branch information
Findeton committed May 16, 2024
1 parent 1a80a62 commit 2848a49
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
aria-checked="{{isCheckSelected(answer, 0) ? 'true' : 'false'}}"
aria-label="{{answer | customI18n : 'text'}} check invalid"
ng-if="!!isInvalidVoteAnswer && question.tally_type === 'cumulative'"
ng-click="!readOnly() && toggleSelectItemCumulative(question, answer, 0)"
ng-click="$event.stopPropagation(); !readOnly() && toggleSelectItem(question, answer)"
>
<i class="fa fa-lg fa-check" ng-if="isCheckSelected(answer, 0)"></i>
<div class="unchecked" ng-if="!isCheckSelected(answer, 0)"></div>
Expand Down

0 comments on commit 2848a49

Please sign in to comment.