Fixed bulk delete torrents header checkbox to be checked when there are any torrents.
This commit is contained in:
parent
0855366afe
commit
43da8c2220
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@
|
|||
<input
|
||||
type="checkbox"
|
||||
(click)="toggleSelectAll($event)"
|
||||
[checked]="selectedTorrents.length === torrents.length"
|
||||
[checked]="selectedTorrents.length > 0 && selectedTorrents.length === torrents.length"
|
||||
/>
|
||||
</th>
|
||||
<th>Name</th>
|
||||
|
|
|
|||
Loading…
Reference in a new issue