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 867ab56 commit 83fc2afCopy full SHA for 83fc2af
services/api-server/src/simcore_service_api_server/services_http/webserver.py
@@ -1,6 +1,5 @@
1
# pylint: disable=too-many-public-methods
2
3
-import json
4
import logging
5
import urllib.parse
6
from collections.abc import Mapping
@@ -193,9 +192,7 @@ async def _page_projects(
193
192
194
optional: dict[str, Any] = {}
195
if project_name_search is not None:
196
- optional["filters"] = json.dumps(
197
- {"project_name_search": project_name_search}
198
- )
+ optional["filters"] = {"project_name_search": project_name_search}
199
200
with service_exception_handler(
201
service_name="Webserver",
0 commit comments