mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-09 08:15:27 +01:00
Fix: correctly track task id in list for change detection (#8230)
This commit is contained in:
parent
2806b1820e
commit
c22a80abd3
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@for (task of tasks | slice: (page-1) * pageSize : page * pageSize; track task) {
|
@for (task of tasks | slice: (page-1) * pageSize : page * pageSize; track task.id) {
|
||||||
<tr (click)="toggleSelected(task, $event); $event.stopPropagation();">
|
<tr (click)="toggleSelected(task, $event); $event.stopPropagation();">
|
||||||
<td>
|
<td>
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue