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 894916a commit cb9876fCopy full SHA for cb9876f
projects/fusio-sdk/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "ngx-fusio-sdk",
3
- "version": "6.1.0",
+ "version": "6.1.1",
4
"description": "SDK to integrate Fusio into an Angular app",
5
"keywords": [
6
"Fusio",
projects/fusio-sdk/src/lib/abstract/list.ts
@@ -109,6 +109,8 @@ export abstract class List<T> implements OnInit {
109
query.push(this.pageSize);
110
if (this.search) {
111
query.push(this.search);
112
+ } else {
113
+ query.push('');
114
}
115
return query;
116
0 commit comments