aboutsummaryrefslogtreecommitdiffhomepage
path: root/ui/bookmark_entries.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/bookmark_entries.go')
-rw-r--r--ui/bookmark_entries.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/bookmark_entries.go b/ui/bookmark_entries.go
index c5f7de3..2dac892 100644
--- a/ui/bookmark_entries.go
+++ b/ui/bookmark_entries.go
@@ -56,6 +56,7 @@ func (c *Controller) ShowStarredPage(w http.ResponseWriter, r *http.Request) {
view.Set("menu", "starred")
view.Set("user", user)
view.Set("countUnread", c.store.CountUnreadEntries(user.ID))
+ view.Set("hasSaveEntry", c.store.HasSaveEntry(user.ID))
- html.OK(w, view.Render("starred"))
+ html.OK(w, view.Render("bookmark_entries"))
}