mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-28 06:46:13 +03:00
fix(logs): wrong date parsing (#1076)
This commit is contained in:
parent
ac52d213fe
commit
14a6b90547
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ export default defineComponent({
|
|||
return LogType[log.type]
|
||||
},
|
||||
formatLogTimestamp(log: Log) {
|
||||
return dayjs(log.timestamp * 1000).format(this.webuiSettings.dateFormat)
|
||||
return dayjs(log.timestamp).format(this.webuiSettings.dateFormat)
|
||||
},
|
||||
async toggleSelectAll() {
|
||||
if (this.logTypeFilter.length === this.logTypeOptions.length) {
|
||||
|
|
Loading…
Reference in a new issue