aboutsummaryrefslogtreecommitdiffhomepage
path: root/ui/category_create.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/category_create.go')
-rw-r--r--ui/category_create.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/category_create.go b/ui/category_create.go
index 2d8c9d9..8f7019f 100644
--- a/ui/category_create.go
+++ b/ui/category_create.go
@@ -28,6 +28,7 @@ func (c *Controller) CreateCategory(w http.ResponseWriter, r *http.Request) {
view.Set("menu", "categories")
view.Set("user", user)
view.Set("countUnread", c.store.CountUnreadEntries(user.ID))
+ view.Set("countErrorFeeds", c.store.CountErrorFeeds(user.ID))
html.OK(w, r, view.Render("create_category"))
}