stream-engine-widgets 0.3.24 → 0.3.25
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.
|
@@ -384,9 +384,8 @@ class WidgetManager {
|
|
|
384
384
|
async createWidget(config) {
|
|
385
385
|
const labels = config?.labels;
|
|
386
386
|
let widgetConfig = "type" in config && config.type === "blaze" ? {
|
|
387
|
-
...
|
|
388
|
-
|
|
389
|
-
...config
|
|
387
|
+
...config,
|
|
388
|
+
...this.convertAPIResponseToConfig(config)
|
|
390
389
|
} : config;
|
|
391
390
|
widgetConfig = this.applyLabels(widgetConfig, labels);
|
|
392
391
|
if (this.widgets.has(widgetConfig?.containerId)) {
|
|
@@ -588,4 +587,4 @@ const BlazeWidget = ({
|
|
|
588
587
|
};
|
|
589
588
|
|
|
590
589
|
export { BlazeWidget as default };
|
|
591
|
-
//# sourceMappingURL=blaze-
|
|
590
|
+
//# sourceMappingURL=blaze-CKjlj6PD.js.map
|