@sumaris-net/ngx-components 0.27.12 → 0.27.13
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/sumaris-net.ngx-components.umd.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/table/table.class.js +1 -1
- package/esm2015/src/app/shared/pipes/arrays.pipe.js +2 -2
- package/fesm2015/sumaris-net.ngx-components.js +1 -1
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/table/table.class.d.ts +1 -1
- package/src/app/shared/pipes/arrays.pipe.d.ts +6 -6
|
@@ -2654,7 +2654,7 @@
|
|
|
2654
2654
|
function ArrayIncludesPipe() {
|
|
2655
2655
|
}
|
|
2656
2656
|
ArrayIncludesPipe.prototype.transform = function (val, args) {
|
|
2657
|
-
return val && val.includes(args);
|
|
2657
|
+
return val && val.includes(args) || false;
|
|
2658
2658
|
};
|
|
2659
2659
|
return ArrayIncludesPipe;
|
|
2660
2660
|
}());
|