Skip to content
Snippets Groups Projects

OZG-5977 add multi file upload to bescheid wizard

Merged Sebastian Bergandy requested to merge OZG-5977-multi-file-upload-bescheid into main
27 files
+ 183
951
Compare changes
  • Side-by-side
  • Inline
Files
27
<ods-attachment-wrapper>
@for (attachment of attachments; track $index) {
<alfa-binary-file2-container
[file]="attachment"
[deletable]="deletable"
(startDelete)="delete.emit($event)"
[attr.data-test-id]="(attachment.name | convertForDataTest) + '-file2-container'"
>
</alfa-binary-file2-container>
}
@if (upload.loading || upload.error) {
<ods-attachment
[loadingCaption]="upload.fileName"
errorCaption="Fehler beim Hochladen"
[errorMessages]="upload.error | convertProblemDetailToErrorMessages"
description="Anhang wird hochgeladen"
[isLoading]="upload.loading"
data-test-id="attachment-upload-in-progress"
></ods-attachment>
}
</ods-attachment-wrapper>
Loading