diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2023-04-25 16:23:05 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2023-04-25 16:23:05 +0300 |
commit | 3c5c8469021076a7214439329c5bc0ccee6026d9 (patch) | |
tree | 61550e679023fdf2e828d3b9ffe7966e91114b15 /web | |
parent | app/packages: split relations per page URL (diff) | |
download | soko-3c5c8469021076a7214439329c5bc0ccee6026d9.tar.gz soko-3c5c8469021076a7214439329c5bc0ccee6026d9.tar.bz2 soko-3c5c8469021076a7214439329c5bc0ccee6026d9.zip |
app/package/bugs: fix sidebar shortcuts
Closes: https://bugs.gentoo.org/904888
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'web')
-rw-r--r-- | web/templates/packages/components/bugs.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/templates/packages/components/bugs.tmpl b/web/templates/packages/components/bugs.tmpl index e63a986..195ea07 100644 --- a/web/templates/packages/components/bugs.tmpl +++ b/web/templates/packages/components/bugs.tmpl @@ -17,7 +17,7 @@ {{if .Package.AllBugs}} {{if $general_bugs}} - <h3 class="mb-4">Bug Reports</h3> + <h3 id="packages" class="mb-4">Bug Reports</h3> <ul class="list-group"> {{range .Package.Bugs}} {{if eq .Component "Current packages"}} @@ -40,7 +40,7 @@ {{if $stabilization_bugs}} - <h3 class="my-4">Stabilization Bug Reports</h3> + <h3 id="stabilization" class="my-4">Stabilization Bug Reports</h3> <ul class="list-group"> {{range .Package.AllBugs}} {{if eq .Component "Stabilization"}} @@ -61,7 +61,7 @@ {{end}} {{if $keywording_bugs}} - <h3 class="my-4">Keywording Bug Reports</h3> + <h3 id="keywording" class="my-4">Keywording Bug Reports</h3> <ul class="list-group"> {{range .Package.AllBugs}} {{if eq .Component "Keywording"}} |