mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-29 05:28:53 +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-col ref="fileZone">
|
||||
<v-file-input
|
||||
v-if="!urls"
|
||||
v-if="urls.length === 0"
|
||||
v-model="files"
|
||||
color="deep-purple accent-4"
|
||||
counter
|
||||
|
@ -237,7 +237,7 @@ export default {
|
|||
}
|
||||
},
|
||||
created() {
|
||||
this.urls = this.initialMagnet
|
||||
if (this.initialMagnet) this.urls = this.initialMagnet
|
||||
this.setSettings()
|
||||
if (this.openSuddenly === true) {
|
||||
this.dTransition = 'none'
|
||||
|
|
Loading…
Reference in a new issue