mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-15 10:52:30 +02:00
Etemplate: Fix editing entry so it no longer matched current filters would cause missing rows and incorrect total
This commit is contained in:
@ -159,7 +159,7 @@ var et2_nextmatch_controller = /** @class */ (function (_super) {
|
||||
* @param {string} uid
|
||||
*/
|
||||
et2_nextmatch_controller.prototype.deleteRow = function (uid) {
|
||||
var entry = this._selectionMgr._getRegisteredRowsEntry(uid);
|
||||
var entry = Object.values(this._indexMap).find(function (entry) { return entry.uid == uid; });
|
||||
// Unselect
|
||||
this._selectionMgr.setSelected(uid, false);
|
||||
if (entry && entry.idx !== null) {
|
||||
|
Reference in New Issue
Block a user