Skip to content

Commit cb9876f

Browse files
committed
add empty search
1 parent 894916a commit cb9876f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

projects/fusio-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-fusio-sdk",
3-
"version": "6.1.0",
3+
"version": "6.1.1",
44
"description": "SDK to integrate Fusio into an Angular app",
55
"keywords": [
66
"Fusio",

projects/fusio-sdk/src/lib/abstract/list.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ export abstract class List<T> implements OnInit {
109109
query.push(this.pageSize);
110110
if (this.search) {
111111
query.push(this.search);
112+
} else {
113+
query.push('');
112114
}
113115
return query;
114116
}

0 commit comments

Comments
 (0)