fix: multiple selection count

- Only add files to selected list that arent on it.
- Only shift key select when there are selected files.
This commit is contained in:
Ramires Viana 2020-01-16 12:55:25 +00:00
parent 66863b72f7
commit 963837ef1d

View File

@ -132,7 +132,7 @@ export default {
return return
} }
if (event.shiftKey) { if (event.shiftKey && this.selected.length > 0) {
let fi = 0 let fi = 0
let la = 0 let la = 0
@ -145,7 +145,9 @@ export default {
} }
for (; fi <= la; fi++) { for (; fi <= la; fi++) {
this.addSelected(fi) if (this.$store.state.selected.indexOf(fi) == -1) {
this.addSelected(fi)
}
} }
return return