web: always trim the search string passed.
This commit is contained in:
parent
10999630e5
commit
e1c0cd44ae
|
@ -43,7 +43,7 @@ const providerListArgs = (page: number, search = "") => ({
|
||||||
ordering: "name",
|
ordering: "name",
|
||||||
applicationIsnull: false,
|
applicationIsnull: false,
|
||||||
pageSize: 20,
|
pageSize: 20,
|
||||||
search: search,
|
search: search.trim(),
|
||||||
page,
|
page,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Reference in New Issue