diff options
| author | Jake Mannens <jake@asger.xyz> | 2026-06-04 19:30:00 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2026-06-04 19:30:00 +1000 |
| commit | 7b825a8bdbc0de269207c995091432cdae8edad2 (patch) | |
| tree | 0b380e025753b8ee123da93e43a9daa08f3a78af | |
| parent | abe500bdb2cee643a593fe11286be383bd481af9 (diff) | |
Fixed implicit tags linking to a search query in TagDefinitions.razor
| -rw-r--r-- | Pages/TagDefinitions.razor | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Pages/TagDefinitions.razor b/Pages/TagDefinitions.razor index c67a43f..5d02e03 100644 --- a/Pages/TagDefinitions.razor +++ b/Pages/TagDefinitions.razor @@ -36,7 +36,7 @@ var implicitTags = tagDef.ImplicitTags .Where(td => td.Source == ApiModels.TagSource.UserTag); foreach(var tag in implicitTags) { - <a href="/Gallery?q=@tag.Name" class="nondecorated"> + <a href="/Gallery?t=@tag.Guid" class="nondecorated"> @tag.Name </a> if(tag != implicitTags.Last()) |
