From d66b03166fd25fbabf0dd7e391bf769d46d06ed5 Mon Sep 17 00:00:00 2001 From: James Cole Date: Tue, 1 Dec 2020 18:11:31 +0100 Subject: [PATCH] Fix #4070 --- app/Support/Search/OperatorQuerySearch.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Support/Search/OperatorQuerySearch.php b/app/Support/Search/OperatorQuerySearch.php index 5a465b846d..93e9c792ba 100644 --- a/app/Support/Search/OperatorQuerySearch.php +++ b/app/Support/Search/OperatorQuerySearch.php @@ -210,6 +210,7 @@ class OperatorQuerySearch implements SearchInterface $this->billRepository->setUser($user); $this->categoryRepository->setUser($user); $this->budgetRepository->setUser($user); + $this->tagRepository->setUser($user); $this->collector = app(GroupCollectorInterface::class); $this->collector->setUser($this->user); $this->collector->withAccountInformation()->withCategoryInformation()->withBudgetInformation();