We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af5d4b8 commit bc4d187Copy full SHA for bc4d187
services/static-webserver/client/source/class/osparc/dashboard/CardBase.js
@@ -83,7 +83,7 @@ qx.Class.define("osparc.dashboard.CardBase", {
83
84
filterText: function(checks, text) {
85
if (text) {
86
- const includesSome = checks.some(check => check.toLowerCase().trim().includes(text.toLowerCase()));
+ const includesSome = checks.some(check => check && check.toLowerCase().trim().includes(text.toLowerCase()));
87
return !includesSome;
88
}
89
return false;
0 commit comments