Skip to content

Commit

Permalink
Merge pull request #304 from asgraf/patch-1
Browse files Browse the repository at this point in the history
Fixed variable name in local.js:50
  • Loading branch information
ADmad authored Dec 28, 2022
2 parents 4361c86 + ea3e954 commit fad8ab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webroot/js/local.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ var CrudView = {
query[$ele.data('filter-field') || $ele.attr('name')] = params.term;

if ($ele.data('dependent-on') && $('#' + $ele.data('dependent-on')).val()) {
data[$ele.data('dependent-on-field')] = $('#' + $ele.data('dependent-on')).val();
query[$ele.data('dependent-on-field')] = $('#' + $ele.data('dependent-on')).val();
}

return query;
Expand Down

0 comments on commit fad8ab9

Please sign in to comment.