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.
2 parents 522b93a + 41b18c2 commit 2e2d2d6Copy full SHA for 2e2d2d6
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