From 8e01345f1494f37d462ad35fb6723c8051f9d752 Mon Sep 17 00:00:00 2001 From: Dan Brown Date: Wed, 28 Feb 2024 13:20:24 +0000 Subject: [PATCH] Entity popular queriy: Loaded parents for selector breadcrumbs --- app/Entities/Queries/QueryPopular.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Entities/Queries/QueryPopular.php b/app/Entities/Queries/QueryPopular.php index 2b46ebfbc..85f88a1d1 100644 --- a/app/Entities/Queries/QueryPopular.php +++ b/app/Entities/Queries/QueryPopular.php @@ -35,7 +35,7 @@ class QueryPopular ->take($count) ->get(); - $this->listLoader->loadIntoRelations($views->all(), 'viewable', false); + $this->listLoader->loadIntoRelations($views->all(), 'viewable', true); return $views->pluck('viewable')->filter(); }