Fix: Cannot move kot as row.kotId was always undefined.

This commit is contained in:
2026-02-12 08:20:54 +00:00
parent 1271e26dd8
commit 535a145742

View File

@ -90,7 +90,7 @@
<ng-container matColumnDef="kotActions">
<mat-header-cell *matHeaderCellDef>Quantity</mat-header-cell>
<mat-cell *matCellDef="let row" class="right-align">
<button mat-icon-button (click)="moveKot(row)" [disabled]="!row.kotId">
<button mat-icon-button (click)="moveKot(row)" [disabled]="!row.kot.id">
<mat-icon class="del">open_in_new</mat-icon>
</button>
</mat-cell>