aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Model/Translations.elm
diff options
context:
space:
mode:
authorJoris2015-12-30 00:28:41 +0100
committerJoris2015-12-30 00:32:44 +0100
commite32a9126ae7fd7f9596dd08b64ecab8644d994bd (patch)
tree8680faa00c624b81052f3617e6baf7ff8ea9645d /src/client/elm/Model/Translations.elm
parenta7db22556b91bc7c499e010b4c051f4442ad8ce2 (diff)
downloadbudget-e32a9126ae7fd7f9596dd08b64ecab8644d994bd.tar.gz
budget-e32a9126ae7fd7f9596dd08b64ecab8644d994bd.tar.bz2
budget-e32a9126ae7fd7f9596dd08b64ecab8644d994bd.zip
Upgrade to elm 0.16.0
Diffstat (limited to 'src/client/elm/Model/Translations.elm')
-rw-r--r--src/client/elm/Model/Translations.elm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/elm/Model/Translations.elm b/src/client/elm/Model/Translations.elm
index bec8c9b..dbf378c 100644
--- a/src/client/elm/Model/Translations.elm
+++ b/src/client/elm/Model/Translations.elm
@@ -45,7 +45,7 @@ partDecoderWithTag : String -> Json.Decoder MessagePart
partDecoderWithTag tag =
case tag of
"Order" -> Json.object1 Order ("contents" := Json.int)
- "Str" -> Json.object1 Str ("contents" := Json.string)
+ _ -> Json.object1 Str ("contents" := Json.string)
-----