mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-14 12:10:18 +03:00
fix: Duplicate reference in dashboard settings (#618) @Larsluph
This commit is contained in:
parent
f6b07ef1ef
commit
ea7e68ca2a
1 changed files with 2 additions and 2 deletions
|
@ -97,8 +97,8 @@ export default new Vuex.Store({
|
|||
paginationSize: 15,
|
||||
dateFormat: 'DD/MM/YYYY, HH:mm:ss',
|
||||
openSideBarOnStart: true,
|
||||
busyTorrentProperties: [...propertiesTemplate],
|
||||
doneTorrentProperties: [...propertiesTemplate]
|
||||
busyTorrentProperties: JSON.parse(JSON.stringify(propertiesTemplate)),
|
||||
doneTorrentProperties: JSON.parse(JSON.stringify(propertiesTemplate))
|
||||
},
|
||||
categories: [],
|
||||
trackers: [],
|
||||
|
|
Loading…
Add table
Reference in a new issue