(core) updates from grist-core

This commit is contained in:
Paul Fitzpatrick
2023-05-23 09:10:34 -04:00
8 changed files with 169 additions and 28 deletions

View File

@@ -578,9 +578,10 @@ BaseView.prototype._saveEditRowField = function(editRowModel, colName, value) {
mainRowModel[colName](value);
}
const ret = DataRowModel.prototype._saveField.call(editRowModel, colName, value)
// Display this rowId, even if it doesn't match the filter
// Display this rowId, even if it doesn't match the filter,
// unless the filter is on a Bool column
.then((result) => {
if (!this.isDisposed()) {
if (!this.isDisposed() && this.currentColumn().pureType() !== 'Bool') {
this._sectionFilter.addTemporaryRow(rowId);
}
return result;