Skip to content

Commit

Permalink
Fix showing header more than once
Browse files Browse the repository at this point in the history
Not entirely sure why this broke; looked a bit through the git log but
nothing obvious 🤔

Fixes #575
  • Loading branch information
arp242 committed Mar 5, 2022
1 parent ee19963 commit a2bf498
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handlers/dashboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ func (h backend) loadWidget(w http.ResponseWriter, r *http.Request) error {
User: User(r.Context()),
TotalUniqueUTC: total,
TotalUnique: total,
RowsOnly: key != "",
RowsOnly: key != "" || offset > 0,
Args: widgets.Args{
Rng: rng,
PathFilter: pathFilter,
Expand Down

0 comments on commit a2bf498

Please sign in to comment.