mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) updates from grist-core
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user