@c8y/ngx-components 1018.0.116 → 1018.0.119
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/esm2020/core/realtime/measurement-realtime.service.mjs +4 -2
- package/esm2020/device-profile/device-profile.component.mjs +4 -2
- package/esm2020/widgets/implementations/kpi/kpi-widget-view/kpi-widget-view.component.mjs +2 -2
- package/fesm2015/c8y-ngx-components-device-profile.mjs +3 -1
- package/fesm2015/c8y-ngx-components-device-profile.mjs.map +1 -1
- package/fesm2015/c8y-ngx-components-widgets-implementations-kpi.mjs +1 -1
- package/fesm2015/c8y-ngx-components-widgets-implementations-kpi.mjs.map +1 -1
- package/fesm2015/c8y-ngx-components.mjs +3 -1
- package/fesm2015/c8y-ngx-components.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-device-profile.mjs +3 -1
- package/fesm2020/c8y-ngx-components-device-profile.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-widgets-implementations-kpi.mjs +1 -1
- package/fesm2020/c8y-ngx-components-widgets-implementations-kpi.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components.mjs +3 -1
- package/fesm2020/c8y-ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/widgets/implementations/kpi/kpi-widget-view/kpi-widget-view.component.d.ts +2 -2
|
@@ -523,7 +523,9 @@ class DeviceProfileComponent {
|
|
|
523
523
|
return this.queriesUtil.addOrFilter({ deviceType: this.deviceProfile.c8y_Filter.type }, { __not: { __has: `deviceType` } });
|
|
524
524
|
}
|
|
525
525
|
else {
|
|
526
|
-
return this.queriesUtil.addOrFilter({ 'c8y_Filter.type': this.deviceProfile.c8y_Filter.type }, {
|
|
526
|
+
return this.queriesUtil.addOrFilter({ 'c8y_Filter.type': this.deviceProfile.c8y_Filter.type }, {
|
|
527
|
+
__or: [{ 'c8y_Filter.type': '' }, { __not: { __has: `c8y_Filter.type` } }]
|
|
528
|
+
});
|
|
527
529
|
}
|
|
528
530
|
}
|
|
529
531
|
return {};
|