Skip to content

Commit

Permalink
Bumped the version up
Browse files Browse the repository at this point in the history
- Also some slight clean up in the creation of the alternative names of people to remove the react key error for array elements
  • Loading branch information
SquireOfSoftware committed May 3, 2021
1 parent 9b60523 commit 19fcfb2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions checkin/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
- /Users/JarvisWalker/pg_data_test:/var/lib/postgresql/data

person-service:
image: rhinoflower/checkin-service:0.10.0
image: rhinoflower/checkin-service:0.11.0
container_name: person-service
depends_on:
- db
Expand All @@ -22,7 +22,7 @@ services:
# - "SPRING_PROFILES_ACTIVE=initialiser"

ui:
image: rhinoflower/checkin-ui:0.14.3
image: rhinoflower/checkin-ui:0.15.0
container_name: ui
ports:
- 8000:8000
Expand Down
2 changes: 1 addition & 1 deletion docker-nginx-ui-build.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
docker build -t rhinoflower/checkin-ui:0.14.3 .
docker build -t rhinoflower/checkin-ui:0.15.0 .
2 changes: 1 addition & 1 deletion report/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "report",
"version": "0.11.0",
"version": "0.11.1",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
Expand Down
6 changes: 3 additions & 3 deletions report/src/components/QrReport.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ class QrReport extends Component {
if (person.otherNames !== undefined &&
person.otherNames.length > 0) {
let otherNames = [];
person.otherNames.forEach(name => {
person.otherNames.forEach((name, index) => {
if (name !== undefined) {
otherNames.push(
<span key={person.hash}>{name.name}</span>
<span key={person.hash + index}>{name.name}</span>
);
}
});
Expand All @@ -53,7 +53,7 @@ class QrReport extends Component {
{otherNamesSection}
</div>
<div className="qrCodeSection">
<img src={this.props.getQrCodeLink(person.id)} />
<img src={this.props.getQrCodeLink(person.id)} alt={givenName + "'s qr code"}/>
</div>
</div>
);
Expand Down

0 comments on commit 19fcfb2

Please sign in to comment.