Update the way that the force rerender calls the render method
This commit is contained in:
parent
98b429f941
commit
2497c492bf
2 changed files with 2 additions and 2 deletions
|
|
@ -61,7 +61,7 @@ export class AllItemSheetV1 extends GenericAppMixin(HandlebarsApplicationMixin(I
|
||||||
await super._processSubmitData(...args);
|
await super._processSubmitData(...args);
|
||||||
|
|
||||||
if (this.document.system.forceRerender) {
|
if (this.document.system.forceRerender) {
|
||||||
await this.render(false);
|
await this.render();
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
// #endregion
|
// #endregion
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@ export class ArmourSheet extends GenericAppMixin(HandlebarsApplicationMixin(Item
|
||||||
await super._processSubmitData(...args);
|
await super._processSubmitData(...args);
|
||||||
|
|
||||||
if (this.document.system.forceRerender) {
|
if (this.document.system.forceRerender) {
|
||||||
await this.render(false);
|
await this.render();
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue