From 69e913ab8cc0752e59616a476350673dfaec157a Mon Sep 17 00:00:00 2001 From: Horia Coman Date: Thu, 13 Feb 2025 00:11:44 +0200 Subject: [PATCH] Merged branch feature/moar-polish into develop --- .../core/impl/repository/sqlite/domain/application/search.py | 2 +- .../routes/workspace/calendar/time-event/in-day-block/$id.tsx | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/jupiter/core/impl/repository/sqlite/domain/application/search.py b/src/core/jupiter/core/impl/repository/sqlite/domain/application/search.py index 76dba2c58..4ca9960f6 100644 --- a/src/core/jupiter/core/impl/repository/sqlite/domain/application/search.py +++ b/src/core/jupiter/core/impl/repository/sqlite/domain/application/search.py @@ -199,7 +199,7 @@ async def search( .where( self._search_index_table.c.workspace_ref_id == workspace_ref_id.as_int() ) - .where(self._search_index_table.c.name.match(query_clean)) + .where(self._search_index_table.c.name.match(f'"{query_clean}"')) ) if not include_archived: query_stmt = query_stmt.where( diff --git a/src/webui/app/routes/workspace/calendar/time-event/in-day-block/$id.tsx b/src/webui/app/routes/workspace/calendar/time-event/in-day-block/$id.tsx index ab7cdbeee..5131dc7c1 100644 --- a/src/webui/app/routes/workspace/calendar/time-event/in-day-block/$id.tsx +++ b/src/webui/app/routes/workspace/calendar/time-event/in-day-block/$id.tsx @@ -574,6 +574,7 @@ export default function TimeEventInDayBlockViewOne() { {loaderData.inboxTask && (