Fix tag list url when tags are treated as tags

This commit is contained in:
Chris Hunt
2025-09-16 09:50:03 +01:00
parent 32bf1d034f
commit 755c3e59e1
2 changed files with 3 additions and 1 deletions

View File

@@ -101,6 +101,8 @@ class TagController extends Controller
$data['tag'] = $item->id;
$data['all_apps'] = $item->children;
$data['taglist'] = Item::ofType('tag')->where('id', '>', 0)->orderBy('title', 'asc')->get();
return view('welcome', $data);
}