bruce-models 2.5.4 → 2.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11451,7 +11451,7 @@
11451
11451
  ${fileContent}
11452
11452
 
11453
11453
  const paramsId = "${paramsId}";
11454
- const containerId = "${container.id}";
11454
+ const containerId = "${container ? container.id : ""}";
11455
11455
  let container;
11456
11456
  if (containerId) {
11457
11457
  container = document.getElementById("${container.id}");
@@ -11460,7 +11460,7 @@
11460
11460
  const params = window["${paramsId}"];
11461
11461
 
11462
11462
  window["${disposeId}"] = Run({
11463
- container,
11463
+ container: container,
11464
11464
  pluginParams: params
11465
11465
  });
11466
11466
  }