fix: no dirty marks on client

This commit is contained in:
cha0s 2019-05-10 02:29:55 -05:00
parent cec3769802
commit e90755fc01

View File

@ -64,6 +64,9 @@ export class EntityList extends decorate(class {}) {
}
markEntityDirty(entity) {
if (AVOCADO_CLIENT) {
return;
}
if (-1 === this._dirtyEntities.indexOf(entity)) {
this._dirtyEntities.push(entity);
}