aboutsummaryrefslogtreecommitdiff
path: root/src/client/northstar/core
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2019-04-29 20:32:39 -0400
committerBob Zeleznik <zzzman@gmail.com>2019-04-29 20:32:39 -0400
commit08849062e84087ac24031944af8697c87d7d183c (patch)
tree4e21bbc4fa144ab5e5a17bdfbeea87b729ff091a /src/client/northstar/core
parent986595be59e714de4fe6c677dcace3c3f402ac82 (diff)
parent3da71792a339536118b7af7cfe0529201a45c64e (diff)
Merge branch 'master' into presentation_view
Diffstat (limited to 'src/client/northstar/core')
-rw-r--r--src/client/northstar/core/filter/ValueComparision.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/northstar/core/filter/ValueComparision.ts b/src/client/northstar/core/filter/ValueComparision.ts
index 80b1242a9..65687a82b 100644
--- a/src/client/northstar/core/filter/ValueComparision.ts
+++ b/src/client/northstar/core/filter/ValueComparision.ts
@@ -62,13 +62,13 @@ export class ValueComparison {
var rawName = this.attributeModel.CodeName;
switch (this.Predicate) {
case Predicate.STARTS_WITH:
- ret += rawName + " !== null && " + rawName + ".StartsWith(" + val + ") ";
+ ret += rawName + " != null && " + rawName + ".StartsWith(" + val + ") ";
return ret;
case Predicate.ENDS_WITH:
- ret += rawName + " !== null && " + rawName + ".EndsWith(" + val + ") ";
+ ret += rawName + " != null && " + rawName + ".EndsWith(" + val + ") ";
return ret;
case Predicate.CONTAINS:
- ret += rawName + " !== null && " + rawName + ".Contains(" + val + ") ";
+ ret += rawName + " != null && " + rawName + ".Contains(" + val + ") ";
return ret;
default:
ret += rawName + " " + op + " " + val + " ";