Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Commit

Permalink
fix(add forcecaculation config): add
Browse files Browse the repository at this point in the history
  • Loading branch information
DR-Univer committed Nov 30, 2020
1 parent f5d0cca commit e96d210
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions src/global/formula.js
Original file line number Diff line number Diff line change
Expand Up @@ -5112,11 +5112,17 @@ const luckysheetformula = {

formulaObjects[key] = item;

arrayMatch(formulaArray, null, function(key){
if(key in updateValueOject){
updateValueArray.push(item);
}
});
if(isForce){
updateValueArray.push(item);
}
else{
arrayMatch(formulaArray, null, function(key){
if(key in updateValueOject){
updateValueArray.push(item);
}
});
}

}
// console.log(formulaObjects)
// console.timeEnd("1");
Expand Down

0 comments on commit e96d210

Please sign in to comment.