|
|
|
@ -64,13 +64,12 @@ async function getWidgetBundlesByParent() {
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
widget = await executeBundle(bundle);
|
|
|
|
widget = await executeBundle(bundle);
|
|
|
|
|
|
|
|
widgetsByParent.add(widget);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
catch (e) {
|
|
|
|
logError("Widget initialization failed: ", e);
|
|
|
|
logError("Widget initialization failed: ", e);
|
|
|
|
continue;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
widgetsByParent.add(widget);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return widgetsByParent;
|
|
|
|
return widgetsByParent;
|
|
|
|
|