diff options
author | Gusted <postmaster@gusted.xyz> | 2024-04-10 23:50:06 +0200 |
---|---|---|
committer | Gusted <postmaster@gusted.xyz> | 2024-04-10 23:53:40 +0200 |
commit | 3e9a97b9cebccb395e8acd7b7609133457f84477 (patch) | |
tree | 166992ba95c750e8fd71a6e44d2bedc297d2523b /templates/explore | |
parent | Merge pull request 'Update checker setting updates' (#2925) from 0ko/forgejo:... (diff) | |
download | forgejo-3e9a97b9cebccb395e8acd7b7609133457f84477.tar.xz forgejo-3e9a97b9cebccb395e8acd7b7609133457f84477.zip |
[BUG] Fix tooltip for 1000+ stars/forks
- The tooltip attribute should be inside the `<a>` element not outside of it.
- Regression of 854164f40b9d18e624182084a8c9f2f7bce96a64
Diffstat (limited to 'templates/explore')
-rw-r--r-- | templates/explore/repo_list.tmpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/explore/repo_list.tmpl b/templates/explore/repo_list.tmpl index a59235abc1..6381f1217e 100644 --- a/templates/explore/repo_list.tmpl +++ b/templates/explore/repo_list.tmpl @@ -38,15 +38,15 @@ </a> {{end}} {{if not $.DisableStars}} - <a class="flex-text-inline" href="{{.Link}}/stars" aria-label="{{ctx.Locale.TrN .NumStars "explore.stars_one" "explore.stars_few" .NumStars}}"> + <a class="flex-text-inline" href="{{.Link}}/stars" aria-label="{{ctx.Locale.TrN .NumStars "explore.stars_one" "explore.stars_few" .NumStars}}" {{if ge .NumStars 1000}}data-tooltip-content="{{.NumStars}}"{{end}}> {{svg "octicon-star" 16}} - {{if ge .NumStars 1000}}data-tooltip-content="{{.NumStars}}"{{end}}{{CountFmt .NumStars}} + {{CountFmt .NumStars}} </a> {{end}} {{if not $.DisableForks}} - <a class="flex-text-inline" href="{{.Link}}/forks" aria-label="{{ctx.Locale.TrN .NumForks "explore.forks_one" "explore.forks_few" .NumForks}}"> + <a class="flex-text-inline" href="{{.Link}}/forks" aria-label="{{ctx.Locale.TrN .NumForks "explore.forks_one" "explore.forks_few" .NumForks}}" {{if ge .NumForks 1000}}data-tooltip-content="{{.NumForks}}"{{end}}> {{svg "octicon-git-branch" 16}} - {{if ge .NumForks 1000}}data-tooltip-content="{{.NumForks}}"{{end}}{{CountFmt .NumForks}} + {{CountFmt .NumForks}} </a> {{end}} </div> |