Skip to content

Commit

Permalink
fix issure with list headerFilter not setting intialValues correctly …
Browse files Browse the repository at this point in the history
…on blur
  • Loading branch information
olifolkerd committed Apr 23, 2022
1 parent eb58150 commit 6664121
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/js/tabulator_esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -6533,7 +6533,7 @@ class Edit{
this.actions.success(output);

if(this.isFilter){
this.initialValues = output;
this.initialValues = output && !Array.isArray[output] ? [output] : output;
}
}

Expand Down
2 changes: 1 addition & 1 deletion dist/js/tabulator_esm.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/js/modules/Edit/List.js
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ export default class Edit{
this.actions.success(output);

if(this.isFilter){
this.initialValues = output;
this.initialValues = output && !Array.isArray[output] ? [output] : output;
}
}

Expand Down

0 comments on commit 6664121

Please sign in to comment.