Correctly forward the parameters to the super method

This commit is contained in:
Oliver-Akins 2025-04-09 21:08:35 -06:00
parent 26134b0390
commit f1487bd9b8

View file

@ -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();
}; };