Skip to content

Commit b068c93

Browse files
authored
Merge pull request #408 from medizininformatik-initiative/release-v6.3.2
Release v6.3.2
2 parents 564ed7d + ef9cca0 commit b068c93

File tree

8 files changed

+16
-5
lines changed

8 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## v6.3.2 (2025-07-21)
4+
5+
### HotFix
6+
* add missing lang entry
7+
* fix auth config
8+
9+
310
## v6.3.1 (2025-07-21)
411

512
### Feature

docker/deploy-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"roles": ["FEASIBILITY_USER"]
1616
},
1717
"legal": {
18-
"version": "6.3.1",
18+
"version": "6.3.2",
1919
"copyrightYear": "2025",
2020
"copyrightOwner": "FDPG+ Team"
2121
},

docker/lang/de.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,7 @@
332332
"COHORT_WARNING": "Kohortenselektion ist erforderlich",
333333
"COMMENT": "Kommentar",
334334
"HEADER": "Abfrage speichern",
335+
"LABEL": "Titel",
335336
"SAVE": "Speichern",
336337
"TITLE": "Titel"
337338
},

docker/lang/en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,7 @@
332332
"COHORT_WARNING": "Cohort selection is required",
333333
"COMMENT": "Comment",
334334
"HEADER": "Save query",
335+
"LABEL": "Title",
335336
"SAVE": "Save",
336337
"TITLE": "Title"
337338
},

src/app/shared/components/save-file-modal/save-file-modal.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div class="save-query-box">
44
<div fxLayout="column" fxLayoutAlign="space-around center">
55
<mat-form-field class="input-field">
6-
<mat-label>{{ 'SAVED_QUERIES.LABEL' | translate }}</mat-label>
6+
<mat-label>{{ 'SHARED_COMPONENTS.SAVE_MODAL.LABEL' | translate }}</mat-label>
77
<input matInput type="text" [(ngModel)]="title" />
88
</mat-form-field>
99
<mat-form-field *ngIf="isCommentRequired" class="input-field" appearance="fill">
@@ -23,10 +23,10 @@
2323
(click)="doSave()"
2424
class="button-save"
2525
>
26-
{{ 'SHARE_COMPONENTS.SAVE_MODAL.SAVE' | translate }}
26+
{{ 'SHARED_COMPONENTS.SAVE_MODAL.SAVE' | translate }}
2727
</num-button>
2828
<num-button type="blue" (click)="doDiscard()">
29-
{{ 'SHARE_COMPONENTS.SAVE_MODAL.CANCEL' | translate }}
29+
{{ 'SHARED_COMPONENTS.SAVE_MODAL.CANCEL' | translate }}
3030
</num-button>
3131
</div>
3232
</div>

src/assets/config/config.dev.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"legal": {
3838
"copyrightOwner": "FDPG+ Team",
3939
"copyrightYear": "2025",
40-
"version": "6.3.1"
40+
"version": "6.3.2"
4141
},
4242
"mock": {
4343
"loadnsave": false,

src/assets/i18n/de.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,7 @@
332332
"COHORT_WARNING": "Kohortenselektion ist erforderlich",
333333
"COMMENT": "Kommentar",
334334
"HEADER": "Abfrage speichern",
335+
"LABEL": "Titel",
335336
"SAVE": "Speichern",
336337
"TITLE": "Titel"
337338
},

src/assets/i18n/en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,7 @@
332332
"COHORT_WARNING": "Cohort selection is required",
333333
"COMMENT": "Comment",
334334
"HEADER": "Save query",
335+
"LABEL": "Title",
335336
"SAVE": "Save",
336337
"TITLE": "Title"
337338
},

0 commit comments

Comments
 (0)