Merge pull request #20872 from nextcloud/backport/20831/stable19
[stable19] Do not process the same FileInfo twice
This commit is contained in:
commit
3ebecaec52
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -183,12 +183,18 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
fileInfo() {
|
fileInfo(newFile, oldFile) {
|
||||||
this.resetState()
|
if (newFile.id !== oldFile.id) {
|
||||||
this.getShares()
|
this.resetState()
|
||||||
|
this.getShares()
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
beforeMount() {
|
||||||
|
this.getShares()
|
||||||
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
/**
|
/**
|
||||||
* Get the existing shares infos
|
* Get the existing shares infos
|
||||||
|
|
Loading…
Reference in New Issue