mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-14 12:10:18 +03:00
fix: Revert "fix(logs): Wrong date parsing" (#1099)
This commit is contained in:
parent
46f8c9c23c
commit
1110bdb8b7
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).format(this.webuiSettings.dateFormat)
|
||||
return dayjs.unix(log.timestamp).format(this.webuiSettings.dateFormat)
|
||||
},
|
||||
async toggleSelectAll() {
|
||||
if (this.logTypeFilter.length === this.logTypeOptions.length) {
|
||||
|
|
Loading…
Add table
Reference in a new issue