@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.
- package/bundles/schneideress-dashboardframework.umd.js +8 -6
- package/bundles/schneideress-dashboardframework.umd.js.map +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js.map +1 -1
- package/esm2015/lib/ra-widget-container/ra.widget.container.component.js +9 -7
- package/esm5/lib/ra-widget-container/ra.widget.container.component.js +9 -7
- package/fesm2015/schneideress-dashboardframework.js +8 -6
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +8 -6
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/lib/ra-widget-container/ra.widget.container.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1290,13 +1290,15 @@
|
|
|
1290
1290
|
}
|
|
1291
1291
|
}
|
|
1292
1292
|
if (changes.globalFilter && changes.globalFilter.currentValue != changes.globalFilter.previousValue) {
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
if (
|
|
1293
|
+
if (!this.dashboardInfo.curatedFilters) {
|
|
1294
|
+
var filterObj = this.getParsedConfig(this.globalFilter);
|
|
1295
|
+
if (filterObj.WidgetInstanceId) {
|
|
1296
|
+
if (this.data.widgetInfo.widgetInstanceId != filterObj.WidgetInstanceId)
|
|
1297
|
+
this.refreshWidget(this.data.widgetInfo);
|
|
1298
|
+
}
|
|
1299
|
+
else {
|
|
1296
1300
|
this.refreshWidget(this.data.widgetInfo);
|
|
1297
|
-
|
|
1298
|
-
else {
|
|
1299
|
-
this.refreshWidget(this.data.widgetInfo);
|
|
1301
|
+
}
|
|
1300
1302
|
}
|
|
1301
1303
|
}
|
|
1302
1304
|
if (changes.width && changes.width.currentValue != changes.width.previousValue ||
|