Skip to content

Commit 045bdf0

Browse files
authored
Merge pull request #1507 from KodeStar/taglist
Fix tag list url when tags are treated as tags
2 parents 32bf1d0 + 755c3e5 commit 045bdf0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

app/Http/Controllers/TagController.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ public function show($slug, Request $request): View
101101
$data['tag'] = $item->id;
102102
$data['all_apps'] = $item->children;
103103

104+
$data['taglist'] = Item::ofType('tag')->where('id', '>', 0)->orderBy('title', 'asc')->get();
105+
104106
return view('welcome', $data);
105107
}
106108

config/app.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
return [
77

8-
'version' => '2.7.6',
8+
'version' => '2.7.7',
99

1010
'appsource' => env('APP_SOURCE', 'https://appslist.heimdall.site/'),
1111

0 commit comments

Comments
 (0)