aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/html/pages/common.js
Commit message (Collapse)AuthorAgeFilesLines
* dashboard/app: sort bugs by impactTaras Madan2025-07-081-1/+1
| | | | | The impact score is deducted from the title. Impact is max(known_titles).
* pkg/html/pages: sort table also by non-displayed valuesAleksandr Nogikh2023-04-111-2/+7
| | | | | | | | Now we're limited to sorting table columns exactly by the displayed content, but this is not always convenient. If the `sort-value` attribute is present, prefer it to the element's text content.
* dashboard: display collapsible info sections on the bug pageAleksandr Nogikh2023-04-071-0/+14
| | | | | Instead of showing tons of extra information to the user, only show the collapsed titles with counts and let user toggle the sections they need.
* pkg/html/pages: switch to go:embedDmitry Vyukov2022-05-231-0/+101
We use clumsy generate scripts that embed some static files. Switch to the new go:embed thing (added in Go 1.16): https://pkg.go.dev/embed It's much nicer, does not require separate generate step and does not lead to additional diffs in code reviews. go:embed can only embed "files read from the package directory or subdirectories", so we need to move these assets to the package dir.