From 5c110716cfda6e616a795edd12f2012b132dca9f Mon Sep 17 00:00:00 2001 From: Joris Date: Sun, 2 Apr 2017 17:51:12 +0200 Subject: Add a chart on payments by month by categories --- src/client/LoggedIn/View.elm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/client/LoggedIn/View.elm') diff --git a/src/client/LoggedIn/View.elm b/src/client/LoggedIn/View.elm index ddc85d5..4936c6e 100644 --- a/src/client/LoggedIn/View.elm +++ b/src/client/LoggedIn/View.elm @@ -23,11 +23,11 @@ view : Model -> LoggedInModel.Model -> Html Msg view model loggedIn = div [ class "loggedIn" ] - [ let loggedData = LoggedData.build model loggedIn + [ let loggedData = LoggedData.build model.currentTime model.translations model.conf loggedIn in case model.page of Page.Home -> Home.view loggedData loggedIn.home Page.Income -> Income.view loggedData Page.Categories -> Categories.view loggedData - Page.Statistics -> Stat.view loggedData + Page.Statistics -> Stat.view loggedData loggedIn.stat Page.NotFound -> div [] [ text (getMessage model.translations "PageNotFound") ] ] -- cgit v1.2.3