@schneideress/dashboardframework 0.0.265 → 0.0.266

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.
@@ -1079,13 +1079,15 @@ var RAWidgetContainer = /** @class */ (function () {
1079
1079
  }
1080
1080
  }
1081
1081
  if (changes.globalFilter && changes.globalFilter.currentValue != changes.globalFilter.previousValue) {
1082
- var filterObj = this.getParsedConfig(this.globalFilter);
1083
- if (filterObj.WidgetInstanceId) {
1084
- if (this.data.widgetInfo.widgetInstanceId != filterObj.WidgetInstanceId)
1082
+ if (!this.dashboardInfo.curatedFilters) {
1083
+ var filterObj = this.getParsedConfig(this.globalFilter);
1084
+ if (filterObj.WidgetInstanceId) {
1085
+ if (this.data.widgetInfo.widgetInstanceId != filterObj.WidgetInstanceId)
1086
+ this.refreshWidget(this.data.widgetInfo);
1087
+ }
1088
+ else {
1085
1089
  this.refreshWidget(this.data.widgetInfo);
1086
- }
1087
- else {
1088
- this.refreshWidget(this.data.widgetInfo);
1090
+ }
1089
1091
  }
1090
1092
  }
1091
1093
  if (changes.width && changes.width.currentValue != changes.width.previousValue ||