@smartsoft001/crud-shell-angular 1.1.667 → 1.1.668
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/smartsoft001-crud-shell-angular.umd.js +6 -1
- package/bundles/smartsoft001-crud-shell-angular.umd.js.map +1 -1
- package/esm2015/lib/services/crud/crud.service.js +7 -2
- package/fesm2015/smartsoft001-crud-shell-angular.js +6 -1
- package/fesm2015/smartsoft001-crud-shell-angular.js.map +1 -1
- package/lib/services/crud/crud.service.d.ts.map +1 -1
- package/package.json +7 -8
- package/smartsoft001-crud-shell-angular.metadata.json +1 -1
|
@@ -1670,7 +1670,12 @@
|
|
|
1670
1670
|
}
|
|
1671
1671
|
if (filter && filter.query) {
|
|
1672
1672
|
filter.query.forEach(function (q) {
|
|
1673
|
-
|
|
1673
|
+
if (q.value && (typeof q.value === 'string') && q.value[0] !== "'" && q.value[0] !== '"') {
|
|
1674
|
+
query += "&" + q.key + q.type + ("'" + q.value + "'");
|
|
1675
|
+
}
|
|
1676
|
+
else {
|
|
1677
|
+
query += "&" + q.key + q.type + q.value;
|
|
1678
|
+
}
|
|
1674
1679
|
});
|
|
1675
1680
|
}
|
|
1676
1681
|
return query ? "?" + query.replace("&", "") : "";
|