fix: multiple selection count
- Only add files to selected list that arent on it. - Only shift key select when there are selected files.pull/991/head
parent
66863b72f7
commit
963837ef1d
|
@ -132,7 +132,7 @@ export default {
|
|||
return
|
||||
}
|
||||
|
||||
if (event.shiftKey) {
|
||||
if (event.shiftKey && this.selected.length > 0) {
|
||||
let fi = 0
|
||||
let la = 0
|
||||
|
||||
|
@ -145,7 +145,9 @@ export default {
|
|||
}
|
||||
|
||||
for (; fi <= la; fi++) {
|
||||
this.addSelected(fi)
|
||||
if (this.$store.state.selected.indexOf(fi) == -1) {
|
||||
this.addSelected(fi)
|
||||
}
|
||||
}
|
||||
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue