@colijnit/corecomponents_v12 260.1.14 → 260.1.15
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/colijnit-corecomponents_v12.umd.js +1 -1
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/esm2015/lib/components/list-of-values/list-of-values-popup.component.js +2 -2
- package/fesm2015/colijnit-corecomponents_v12.js +1 -1
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/package.json +1 -1
|
@@ -11924,7 +11924,7 @@
|
|
|
11924
11924
|
this.viewModels = this.viewModelsMain.filter(function (vm) {
|
|
11925
11925
|
return Object.values(vm.model).some(function (value) {
|
|
11926
11926
|
if (!_this.searchTerm || !value) {
|
|
11927
|
-
return
|
|
11927
|
+
return true;
|
|
11928
11928
|
}
|
|
11929
11929
|
else {
|
|
11930
11930
|
return value.toString().toLowerCase().includes(_this.searchTerm.toLowerCase());
|