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
|
<input
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
(click)="toggleSelectAll($event)"
|
(click)="toggleSelectAll($event)"
|
||||||
[checked]="selectedTorrents.length === torrents.length"
|
[checked]="selectedTorrents.length > 0 && selectedTorrents.length === torrents.length"
|
||||||
/>
|
/>
|
||||||
</th>
|
</th>
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue