Fix sometimes missing namespace causing some child widgets to have their value in the wrong place

This commit is contained in:
nathan 2022-03-22 15:42:39 -06:00
parent cfc7bd84f5
commit 8a033b6b9a

View File

@ -337,6 +337,12 @@ const Et2WidgetMixin = (superClass) =>
let dom_id = "";
if(this._widget_id)
{
// Create a namespace for this object with new ID
if(this._createNamespace())
{
this.checkCreateNamespace();
}
let path = this.getPath();
if(this.getInstanceManager())
{