Correctly forward the parameters to the super method
This commit is contained in:
parent
26134b0390
commit
f1487bd9b8
1 changed files with 2 additions and 2 deletions
|
|
@ -57,8 +57,8 @@ export function GenericAppMixin(HandlebarsApp) {
|
||||||
* This override makes it so that if the application has any framable popovers
|
* This override makes it so that if the application has any framable popovers
|
||||||
* within it that are currently open, they will rerender as well.
|
* within it that are currently open, they will rerender as well.
|
||||||
*/
|
*/
|
||||||
async _onRender() {
|
async _onRender(...args) {
|
||||||
await super._onRender();
|
await super._onRender(...args);
|
||||||
for (const manager of this._popoverManagers.values()) {
|
for (const manager of this._popoverManagers.values()) {
|
||||||
manager.render();
|
manager.render();
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue