mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-29 21:11:51 +03:00
fix: Drag-and-Drop not working (#669) @Larsluph
This commit is contained in:
parent
de7f47f7cb
commit
141318affc
1 changed files with 2 additions and 2 deletions
|
@ -34,7 +34,7 @@
|
||||||
<v-row no-gutters>
|
<v-row no-gutters>
|
||||||
<v-col ref="fileZone">
|
<v-col ref="fileZone">
|
||||||
<v-file-input
|
<v-file-input
|
||||||
v-if="!urls"
|
v-if="urls.length === 0"
|
||||||
v-model="files"
|
v-model="files"
|
||||||
color="deep-purple accent-4"
|
color="deep-purple accent-4"
|
||||||
counter
|
counter
|
||||||
|
@ -237,7 +237,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.urls = this.initialMagnet
|
if (this.initialMagnet) this.urls = this.initialMagnet
|
||||||
this.setSettings()
|
this.setSettings()
|
||||||
if (this.openSuddenly === true) {
|
if (this.openSuddenly === true) {
|
||||||
this.dTransition = 'none'
|
this.dTransition = 'none'
|
||||||
|
|
Loading…
Add table
Reference in a new issue