Skip to content

Commit

Permalink
fix: 修复种子搜索shiftClick的多选问题
Browse files Browse the repository at this point in the history
closed #805, #932
  • Loading branch information
Rhilip committed Dec 10, 2021
1 parent 75475d8 commit 0ebdbae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/options/views/search/SearchTorrent.ts
Expand Up @@ -1738,7 +1738,7 @@ export default Vue.extend({
let end = this.lastCheckedIndex;
let startIndex = Math.min(start, end);
let endIndex = Math.max(start, end) + 1;
let datas = this.clone(this.datas);
let datas = this.clone(this.filteredDatas.length > 0 ? this.filteredDatas : this.datas);

datas = datas.sort(
this.arrayObjectSort(
Expand Down

0 comments on commit 0ebdbae

Please sign in to comment.