From 182f567304c8cffc77ab220f329f319512f42999 Mon Sep 17 00:00:00 2001 From: Marc Scholten Date: Sun, 16 Apr 2023 12:35:16 +0200 Subject: [PATCH] adjusted index view --- Web/View/Tasks/Index.hs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Web/View/Tasks/Index.hs b/Web/View/Tasks/Index.hs index 93bfdd5..5f78343 100644 --- a/Web/View/Tasks/Index.hs +++ b/Web/View/Tasks/Index.hs @@ -5,9 +5,7 @@ data IndexView = IndexView { tasks :: [Task] } instance View IndexView where html IndexView { .. } = [hsx| - {breadcrumb} - -

Index+ New

+

Tasks+ New

@@ -31,7 +29,7 @@ instance View IndexView where renderTask :: Task -> Html renderTask task = [hsx| - +
{task}{task.description} Show Edit Delete