Instead of calling update during the ignite template construction, it will be called during ready so that we are not in a rendering context when it is invoked.

This commit is contained in:
MattMo 2022-10-24 08:40:30 -07:00
parent 3a16c62b92
commit 02e728de0e

View File

@ -1,4 +1,4 @@
import { IgniteHtml } from "../ignite-html/ignite-html.js";
import { IgniteHtml, IgniteRendering } from "../ignite-html/ignite-html.js";
import { IgniteElement } from "../ignite-html/ignite-element.js";
import { IgniteTemplate, slot, div, html } from "../ignite-html/ignite-template.js";
import { IgniteCallback, IgniteProperty} from "../ignite-html/ignite-html.js";
@ -76,8 +76,8 @@ IgniteTemplate.prototype.route = function(routes, showCallback = null, hideCallb
this._callbacks.push(managedPush);
this._callbacks.push(managedPop);
//Create a constructor callback that will update the state upon first load.
this._constructors.push(update);
//Upon ready call update so our view is displayed if needed.
IgniteRendering.ready(update);
return this;
};