Skip to content

Commit

Permalink
fix missing bracket in import load data check function
Browse files Browse the repository at this point in the history
  • Loading branch information
olifolkerd committed Jul 3, 2022
1 parent 095fe17 commit c53407d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/modules/Import/Import.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Import extends Module{
}

loadDataCheck(data){
return this.table.options.importFormat && (typeof data === "string" || (Array.isArray(data) && data.length && Array.isArray(data));
return this.table.options.importFormat && (typeof data === "string" || (Array.isArray(data) && data.length && Array.isArray(data)));
}

loadData(data, params, config, silent, previousData){
Expand Down

0 comments on commit c53407d

Please sign in to comment.