From 5733d3af9f330d0613ab07caf1c12a1ca1e6f1c8 Mon Sep 17 00:00:00 2001 From: James Tombleson Date: Sat, 13 Jul 2024 10:39:05 -0700 Subject: [PATCH] testing out table view --- internal/handlers/articles.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/handlers/articles.go b/internal/handlers/articles.go index bf602ed..fd4a15d 100644 --- a/internal/handlers/articles.go +++ b/internal/handlers/articles.go @@ -36,5 +36,5 @@ func (h *Handler) ArticlesList(c echo.Context) error { } - return Render(c, http.StatusOK, articles.List(vm)) + return Render(c, http.StatusOK, articles.ListArticlesTable(vm)) }