Skip to content

Commit

Permalink
Fix the Bug (#635)
Browse files Browse the repository at this point in the history
  • Loading branch information
benn02 authored Jan 31, 2023
1 parent 028ecd9 commit a485e41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
[transferPointId]="reachableTransferPoint.id"
></app-transfer-point-name>
</button>
<ng-container *ngIf="droppedElementType === 'vehicles'">
<ng-container *ngIf="droppedElementType === 'vehicle'">
<div
*ngIf="
(reachableTransferPoints$ | async)?.length &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class ChooseTransferTargetPopupComponent
{
// These properties are only set after OnInit
public transferPointId!: UUID;
public droppedElementType!: 'personnel' | 'vehicles';
public droppedElementType!: 'personnel' | 'vehicle';

public transferToCallback!: (
targetId: UUID,
Expand Down

0 comments on commit a485e41

Please sign in to comment.