mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-14 12:10:18 +03:00
fix: Default change location not prefilling (#583) @Larsluph
This commit is contained in:
parent
19bf989c7e
commit
b53c331d4c
1 changed files with 4 additions and 2 deletions
|
@ -13,7 +13,9 @@
|
|||
<v-list flat class="mb-4">
|
||||
<v-list-item v-for="t in torrents" :key="t.hash" else>
|
||||
<v-list-item-content>
|
||||
<v-list-item-title class="text-wrap" v-text="t.name" />
|
||||
<v-list-item-title class="text-wrap">
|
||||
{{ t.name }}
|
||||
</v-list-item-title>
|
||||
</v-list-item-content>
|
||||
</v-list-item>
|
||||
</v-list>
|
||||
|
@ -68,7 +70,7 @@ export default {
|
|||
}
|
||||
},
|
||||
created() {
|
||||
this.newPath = this.getSettings().save_path
|
||||
this.newPath = this.torrents[0].savePath
|
||||
},
|
||||
methods: {
|
||||
setLocation() {
|
||||
|
|
Loading…
Add table
Reference in a new issue