mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-08 22:40:23 +01:00
fix not updated number of nextmatch rows on push type "delete"
This commit is contained in:
parent
783358f264
commit
0c1b92f029
@ -235,7 +235,7 @@ var AppJS = (function(){ "use strict"; return Class.extend(
|
|||||||
// only handle delete by default, for simple case of uid === "$app::$id"
|
// only handle delete by default, for simple case of uid === "$app::$id"
|
||||||
if (pushData.type === 'delete')
|
if (pushData.type === 'delete')
|
||||||
{
|
{
|
||||||
egw.dataStoreUID(this.uid(pushData), null);
|
egw.refresh('', pushData.app, pushData.id, 'delete');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -165,7 +165,7 @@ var EgwApp = /** @class */ (function () {
|
|||||||
return;
|
return;
|
||||||
// only handle delete by default, for simple case of uid === "$app::$id"
|
// only handle delete by default, for simple case of uid === "$app::$id"
|
||||||
if (pushData.type === 'delete') {
|
if (pushData.type === 'delete') {
|
||||||
egw.dataStoreUID(this.uid(pushData), null);
|
egw.refresh('', pushData.app, pushData.id, 'delete');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
|
@ -265,7 +265,7 @@ export abstract class EgwApp
|
|||||||
// only handle delete by default, for simple case of uid === "$app::$id"
|
// only handle delete by default, for simple case of uid === "$app::$id"
|
||||||
if (pushData.type === 'delete')
|
if (pushData.type === 'delete')
|
||||||
{
|
{
|
||||||
egw.dataStoreUID(this.uid(pushData), null);
|
egw.refresh('', pushData.app, pushData.id, 'delete');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user