Skip to content

Commit

Permalink
Merge pull request #54 from medicalinformatics/hotfix
Browse files Browse the repository at this point in the history
Release V0.0.3
  • Loading branch information
m-benamor authored Dec 13, 2023
2 parents 2703a51 + 37d1a29 commit 5b4e116
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog
## [0.0.3] - 2023-12-12
### Fix
- support idtypes array in CreateIds token
## [0.0.2] - 2023-11-20
### Change
- translate patient list paginator
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
![Mainzelliste Logo](./src/assets/images/mainzelliste-logo-650.png)
![Mainzelliste Logo](./doc/images/mainzelliste-logo-670.png)


[![Build](https://github.com/medicalinformatics/mainzelliste-gui/actions/workflows/ci.yml/badge.svg)](https://github.com/medicalinformatics/mainzelliste-gui/actions/workflows/ci.yml)
[![Docker Pulls](https://img.shields.io/docker/pulls/medicalinformatics/mainzelliste-gui.svg)](https://hub.docker.com/r/medicalinformatics/mainzelliste-gui/)

With the Mainzelliste UI your can easily manage your patient list, creating new ID, editing patient fields or deleting patient.

![Mainzelliste UI Screenshot](./doc/images/mainzelliste-ui-screenshot-browser.png)
## Installation Guidelines
### How to configure
Most of the configuration can be set using docker environment variables
Expand Down
Binary file added doc/images/mainzelliste-logo-670.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/images/mainzelliste-ui-screenshot-browser.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mainzelliste-gui",
"version": "0.0.1",
"version": "0.0.3",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down
3 changes: 2 additions & 1 deletion src/app/model/create-ids-token-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ import {TokenData} from './token-data';
export class CreateIdsTokenData extends TokenData{
constructor(
public searchIds: [{idType:string, idString:string}],
public idTypes: string[],
public callback?: URL,
public redirect?: URL
) {
super(callback, redirect);
}

}
}
2 changes: 1 addition & 1 deletion src/app/services/patient-list.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export class PatientListService {
}

generateId(idType: string, idString: string, newIdType: string) {
return this.sessionService.createToken("createIds", new CreateIdsTokenData([{idType, idString}]))
return this.sessionService.createToken("createIds", new CreateIdsTokenData([{idType, idString}], [newIdType]))
.pipe(mergeMap(
token => this.resolveCreateIdsToken(token.id, newIdType)
),
Expand Down

0 comments on commit 5b4e116

Please sign in to comment.