@schneideress/dashboardframework 0.0.181 → 0.0.183

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.
@@ -1845,7 +1845,7 @@
1845
1845
  function () {
1846
1846
  /** @type {?} */
1847
1847
  var widgetConfigFilter;
1848
- if (this.widgetElement) {
1848
+ if (this.widgetElement && typeof (this.widgetElement.getConfigFilter) == 'function') {
1849
1849
  /** @type {?} */
1850
1850
  var configData = this.widgetElement.getConfigFilter();
1851
1851
  if (configData) {
@@ -2102,8 +2102,9 @@
2102
2102
  widgetContainer.isWidgetLoaded = true;
2103
2103
  widgetConfigFilter.appConfig = this.appConfig;
2104
2104
  widgetConfigFilter.widgetInfo = widgetInfo;
2105
- // widgetConfigFilter.widgetInfo = <IWidgetInfo>{};
2105
+ widgetConfigFilter.configChanges = this.getConfigChanges(false);
2106
2106
  widgetConfigFilter.widgetInfo.widgetName = widgetInfo.widgetName;
2107
+ console.log(widgetConfigFilter);
2107
2108
  widgetContainer.widgetElement.loadContent(widgetConfigFilter);
2108
2109
  return [4 /*yield*/, widgetContainer.setLock(widgetConfigFilter.config)];
2109
2110
  case 1: