Commit 468bde3c7d2dd20420ea52f356e903aa6a5d0ddc
1 parent
eb37e68c
update
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/components/time/time.js
... | ... | @@ -55,7 +55,7 @@ const time = { |
55 | 55 | const currentDate = date.getDate() < 10 ? '0' + date.getDate() : date.getDate(); |
56 | 56 | const hh = date.getHours() < 10 ? '0' + date.getHours() : date.getHours(); |
57 | 57 | const mm = date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes(); |
58 | - const ss = date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds(); | |
58 | + // const ss = date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds(); | |
59 | 59 | |
60 | 60 | if (type === 'month') { |
61 | 61 | return month + '-' + currentDate + ' ' + hh + ':' + mm; | ... | ... |