diff options
author | r <r@freesoftwareextremist.com> | 2024-04-21 15:34:07 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2024-04-21 15:34:07 +0000 |
commit | ce1680dfd050990d8f3e484b92eb0db350bc3f2c (patch) | |
tree | ac1d27517473410310f744498fa428fe2f7fec00 /renderer | |
parent | df77ca02265aec9031871db0edf026d70156532e (diff) | |
download | bloat-ce1680dfd050990d8f3e484b92eb0db350bc3f2c.tar.gz bloat-ce1680dfd050990d8f3e484b92eb0db350bc3f2c.zip |
Make refresh button point to the first page on timeline
Diffstat (limited to 'renderer')
-rw-r--r-- | renderer/model.go | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/renderer/model.go b/renderer/model.go index 3862976..59e7cb9 100644 --- a/renderer/model.go +++ b/renderer/model.go @@ -54,12 +54,13 @@ type RootData struct { type TimelineData struct { *CommonData - Title string - Type string - Instance string - Statuses []*mastodon.Status - NextLink string - PrevLink string + Title string + Type string + Instance string + Statuses []*mastodon.Status + NextLink string + PrevLink string + RefreshLink string } type ListsData struct { |