fix: Default change location not prefilling (#583) @Larsluph

This commit is contained in:
Rémi Marseault 2022-12-31 14:52:05 +01:00 committed by GitHub
parent 19bf989c7e
commit b53c331d4c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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() {