Skip to content

Commit

Permalink
Add continue msg to candidate id (#1028)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew2564 authored Feb 8, 2023
1 parent 38abeb7 commit f778e7a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/app/pages/candidate-licence/candidate-licence.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<offline-banner [isOffline]="!!offlineError"></offline-banner>

<ion-grid *ngIf="{ candidateLicence: pageState.candidateData$ | async } as data">
<inappropriate-use-banner>
</inappropriate-use-banner>
<inappropriate-use-banner></inappropriate-use-banner>

<licence-photo
[hasError]="(offlineError || candidateDataError || candidateDataUnavailable)"
[imageSrc]="getImage(pageState.driverPhotograph$ | async, data.candidateLicence?.driverPhotograph)">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ <h4 id="driver-photograph-error-header">{{errorHeading}}</h4>
</ion-row>
</ion-card-header>
<ion-card-content id="driver-photograph-error-text" class="black-text">
{{errorBody}}
<p class="errorFontSize">{{errorBody}}</p>
<p id="driver-standard-id-check-msg" class="errorFontSize">Please continue with standard ID checks.</p>
<br>
</ion-card-content>
</ion-card>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
:host {
.error-card {
width: 100%;
height: 180px;
height: 200px;
}

.alert-icon {
Expand All @@ -12,4 +12,8 @@
.center-icon {
text-align: center;
}

.errorFontSize {
font-size: 18px;
}
}

0 comments on commit f778e7a

Please sign in to comment.