Skip to content

Commit 2640c59

Browse files
committed
fix: use short month
1 parent dfd686f commit 2640c59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/composables/filters/humanDate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default (dateStr, hideTime) => {
1313
if (hideTime) {
1414
if (isToday) { result = 'Today' }
1515
else if (isMaxDate) { result = 'Permanent' } // bans
16-
else { result = dayjs(dateStr).format('MMMM D, YYYY') }
16+
else { result = dayjs(dateStr).format('MMM D, YYYY') }
1717
}
1818
else {
1919
if (timezone) {

0 commit comments

Comments
 (0)