Update short date format (fixes #670)

This commit is contained in:
stuart nelson 2017-03-31 16:25:24 +02:00
parent 78d5030f36
commit cc8f3bb866
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ durationFormat time =
dateFormat : ISO8601.Time -> String dateFormat : ISO8601.Time -> String
dateFormat t = dateFormat t =
String.join "/" <| List.map toString [ ISO8601.month t, ISO8601.day t, ISO8601.year t ] String.join "/" <| List.map toString [ ISO8601.year t, ISO8601.month t, ISO8601.day t ]
timeFormat : Time.Time -> String timeFormat : Time.Time -> String