소스 검색

format time without seconds

tags/1.0.2
Alej 3 년 전
부모
커밋
3dac923353
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      vue-theme/src/utils/helpers.js

+ 1
- 1
vue-theme/src/utils/helpers.js 파일 보기

@@ -75,7 +75,7 @@ const ytThumbnail = (url, desiredSize) => {
75 75
 const formatDate = (unix, includeTime) => {
76 76
     const d = new Date(parseInt(unix) * 1000)
77 77
     return includeTime
78
-        ? d.toLocaleString('en-US', { timeZone: 'UTC' })
78
+        ? d.toLocaleString('en-US', { timeZone: 'UTC', dateStyle: 'short', timeStyle: 'short' })
79 79
         : d.toLocaleDateString('en-US', { timeZone: 'UTC' })
80 80
 }
81 81
 

Loading…
취소
저장