Skip to content

Commit

Permalink
feat: FE - add no document type option to deselect (#2173)
Browse files Browse the repository at this point in the history
FE - add no document type option to deselect

Solves PZ-4726
  • Loading branch information
infonl-marcel authored Dec 2, 2024
1 parent eeec97c commit 54fd3f7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
(valueChange)="updateFormControls()"
placeholder="{{ 'informatieobjectType.-kies-' | translate }}"
>
<mat-option [value]=""
>{{ "informatieobjectType.-geen-" | translate }}</mat-option
>
<mat-option
*ngFor="let informationObjectType of informationObjectTypes"
[value]="informationObjectType.uuid"
Expand Down
1 change: 1 addition & 0 deletions src/main/app/src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@
"enkelvoudigInformatieObjecten": "Documents",
"informatieobjectType": "Document type",
"informatieobjectType.-kies-": "- Select a document type -",
"informatieobjectType.-geen-": "- No document type -",
"informatieobjectTypeOmschrijving": "Document type",
"document.preview": "Document preview",
"document": "Document",
Expand Down
1 change: 1 addition & 0 deletions src/main/app/src/assets/i18n/nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@
"enkelvoudigInformatieObjecten": "Documenten",
"informatieobjectType": "Documenttype",
"informatieobjectType.-kies-": "- Kies een documenttype -",
"informatieobjectType.-geen-": "- Geen documenttype -",
"informatieobjectTypeOmschrijving": "Documenttype",
"document.preview": "Documentvoorbeeld",
"document": "Document",
Expand Down

0 comments on commit 54fd3f7

Please sign in to comment.