Skip to content

Commit

Permalink
Merged branch feature/moar-polish into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
horia141 committed Feb 12, 2025
1 parent b68fcb4 commit 69e913a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,7 @@ export default function TimeEventInDayBlockViewOne() {
{loaderData.inboxTask && (
<InboxTaskPropertiesEditor
title="Inbox Task"
showLinkToInboxTask
intentPrefix="inbox-task"
namePrefix="inboxTask"
topLevelInfo={topLevelInfo}
Expand Down

0 comments on commit 69e913a

Please sign in to comment.