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: {
|
||||
fileInfo() {
|
||||
fileInfo(newFile, oldFile) {
|
||||
if (newFile.id !== oldFile.id) {
|
||||
this.resetState()
|
||||
this.getShares()
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
beforeMount() {
|
||||
this.getShares()
|
||||
},
|
||||
|
||||
methods: {
|
||||
/**
|
||||
* Get the existing shares infos
|
||||
|
|
Loading…
Reference in New Issue