We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 522b93a commit 41b18c2Copy full SHA for 41b18c2
src/Data/Formatter/DateTime.purs
@@ -185,7 +185,7 @@ formatF cb dt@(DT.DateTime d t) = case _ of
185
let month = fromEnum $ D.month d
186
in (padSingleDigit month) <> cb a
187
DayOfMonthTwoDigits a →
188
- show (fromEnum $ D.day d) <> cb a
+ (padSingleDigit $ fromEnum $ D.day d) <> cb a
189
DayOfMonth a →
190
show (fromEnum $ D.day d) <> cb a
191
UnixTimestamp a →
0 commit comments