Update short date format (fixes #670)
This commit is contained in:
parent
78d5030f36
commit
cc8f3bb866
|
@ -64,7 +64,7 @@ durationFormat time =
|
|||
|
||||
dateFormat : ISO8601.Time -> String
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue