Skip to content

Commit

Permalink
Merge branch '4.30-bug-fixes' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
holydk committed Jun 2, 2020
2 parents 9f6002d + 25072d1 commit ea58d0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Presentation/Nop.Web/wwwroot/js/admin.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function checkOverriddenStoreValue(obj, selector) {
// first toggle appropriate hidden inputs for checkboxes
if ($(selector).is(':checkbox')) {
var name = $(selector).attr('name');
$('input:hidden[name="' + name + '"]').attr('disabled', $(obj).is(':checked'));
$('input:hidden[name="' + name + '"]').attr('disabled', !$(obj).is(':checked'));
}

if (!$(obj).is(':checked')) {
Expand Down

0 comments on commit ea58d0a

Please sign in to comment.