chore: minor fix

This commit is contained in:
Shariq Ansari 2022-06-08 19:51:19 +05:30
parent 42a236d9c8
commit d6a6c16fdf

View File

@ -519,7 +519,7 @@ export default class CellManager {
promise = valuePromise.then((value) => {
const oldValue = this.getCell(colIndex, rowIndex).content;
if (oldValue === value) return;
if (oldValue === value) return false;
const done = editor.setValue(value, rowIndex, col);