rez_core 5.0.111 → 5.0.112
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/package.json
CHANGED
|
@@ -780,7 +780,10 @@ export class FilterService {
|
|
|
780
780
|
// Force every param to be a string
|
|
781
781
|
if (clause.params) {
|
|
782
782
|
Object.keys(clause.params).forEach((k) => {
|
|
783
|
-
|
|
783
|
+
const val = clause.params[k];
|
|
784
|
+
if (!Array.isArray(val)) {
|
|
785
|
+
clause.params[k] = String(val); // only convert scalar values
|
|
786
|
+
}
|
|
784
787
|
});
|
|
785
788
|
}
|
|
786
789
|
|