diff options
author | Joris | 2015-11-01 10:49:08 +0100 |
---|---|---|
committer | Joris | 2015-11-01 10:49:08 +0100 |
commit | a14af8d8f2cc9d561a8c8804a4c73b9a35ce8a97 (patch) | |
tree | f260b8a663449d30bae32b0f1cfd70bad323d8c6 /src/client/View/LoggedIn/Table.elm | |
parent | b886ef9b847b63528a40c41b333937007b8f57c5 (diff) |
Set currency in conf instead of in messages
Diffstat (limited to 'src/client/View/LoggedIn/Table.elm')
-rw-r--r-- | src/client/View/LoggedIn/Table.elm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/View/LoggedIn/Table.elm b/src/client/View/LoggedIn/Table.elm index 9d28e81..2cfc6d6 100644 --- a/src/client/View/LoggedIn/Table.elm +++ b/src/client/View/LoggedIn/Table.elm @@ -38,7 +38,7 @@ headerLine model = div [ class "header" ] [ div [ class "cell category" ] [ renderIcon "shopping-cart" ] - , div [ class "cell cost" ] [ text (getMessage "MoneySymbol" model.translations) ] + , div [ class "cell cost" ] [ text model.conf.currency ] , div [ class "cell user" ] [ renderIcon "user" ] , div [ class "cell date" ] [ renderIcon "calendar" ] , div [ class "cell" ] [] |