basesite-shared-grid-lib 21.0.1-beta.3 → 21.0.1-beta.4
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.
|
Binary file
|
|
@@ -317,10 +317,10 @@ class OdataProvider {
|
|
|
317
317
|
if (!col.values || col.values.length === 0) {
|
|
318
318
|
return '';
|
|
319
319
|
}
|
|
320
|
-
const
|
|
321
|
-
return
|
|
322
|
-
?
|
|
323
|
-
: `(${
|
|
320
|
+
const equalsClauses = col.values.map((v) => me.odataOperator.equalsStr(colName, `'${me.encode(v)}'`, isCaseSensitiveStringFilter));
|
|
321
|
+
return equalsClauses.length === 1
|
|
322
|
+
? equalsClauses[0]
|
|
323
|
+
: `(${equalsClauses.join(' or ')})`;
|
|
324
324
|
}
|
|
325
325
|
default:
|
|
326
326
|
break;
|