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

fix: 批量setCellValue isRefresh为false时,中间有公式导致后续单元格无法渲染 #1428

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/global/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ export function setCellValue(row, column, value, options = {}) {
jfrefreshgrid(data, [{ "row": [row, row], "column": [column, column] }]);//update data, meanwhile refresh canvas and store data to history
}
else{
file.data = data;//only update data
Store.flowdata = data;//only update data
}

if (success && typeof success === 'function') {
Expand Down