Skip to content

Commit

Permalink
Fixed variable name in line 50
Browse files Browse the repository at this point in the history
Fixes #303
  • Loading branch information
asgraf authored Dec 16, 2022
1 parent d0fc762 commit ea3e954
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 ea3e954

Please sign in to comment.