Skip to content

Commit

Permalink
Preselect absence type and don't override existing absence types on e…
Browse files Browse the repository at this point in the history
…dit #211
  • Loading branch information
hupf committed Oct 28, 2020
1 parent 483afdb commit 4bda2e2
Show file tree
Hide file tree
Showing 13 changed files with 911 additions and 273 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
class="erz-container erz-container-limited erz-container-padding-y"
*erzLet="{
confirmationStates: confirmationStates$ | async,
categories: activeCategories$ | async
categories: activeCategories$ | async,
formGroup: formGroup$ | async
} as data"
>
<form
*ngIf="data.confirmationStates"
[formGroup]="formGroup"
*ngIf="data.formGroup && data.confirmationStates"
[formGroup]="data.formGroup"
(ngSubmit)="onSubmit()"
>
<div class="alert alert-danger" *ngFor="let error of formErrors$ | async">
Expand Down
Loading

0 comments on commit 4bda2e2

Please sign in to comment.