Skip to content

Commit 848f4c3

Browse files
patsatsiapatsatsia
andauthored
Fix issue with "Select All" button (#277)
Select only fields section and do not toggle "Include Errors" checkbox Co-authored-by: patsatsia <giorgi.patsatsia@valor-software.com>
1 parent 227bb06 commit 848f4c3

File tree

1 file changed

+1
-2
lines changed
  • src/country_workspace/workspaces/static/workspace/js

1 file changed

+1
-2
lines changed

src/country_workspace/workspaces/static/workspace/js/select-all.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ $(function () {
22
$("#select-all").change(function () {
33
$(this)
44
.closest("form")
5-
.find("input:checkbox")
6-
.not(this)
5+
.find("input:checkbox[name='fields']")
76
.prop('checked', this.checked);
87
})
98
})

0 commit comments

Comments
 (0)