Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP:Accesible error links #1824

Closed
wants to merge 14 commits into from
Closed
1 change: 0 additions & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ Taken by PR
### Version 7.0.75-exui-2315
**EXUI-2315** etrieve current user language selection


### Version 7.0.75-exui-2515
**EXUI-2515** case-link-issue

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hmcts/ccd-case-ui-toolkit",
"version": "7.1.31-sonarCloud-gitub-config-update",
"version": "7.0.76-accesible-error-links",
"engines": {
"node": ">=18.19.0"
},
Expand Down
2 changes: 1 addition & 1 deletion projects/ccd-case-ui-toolkit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hmcts/ccd-case-ui-toolkit",
"version": "7.1.31-sonarCloud-gitub-config-update",
"version": "7.0.76-accesible-error-links",
"engines": {
"node": ">=18.19.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -417,5 +417,4 @@ export class CasesService {
this.sessionStorageService.setItem('clientContext', editedClientContextString);
}
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ <h2 class="govuk-error-summary__title" id="error-summary-title">{{error.title |
<div class="govuk-error-summary__body">
<ul class="govuk-list govuk-error-summary__list">
<li>
<a routerLink="." [fragment]="error.fieldId">{{error.description | rpxTranslate}}</a>
<a routerLink="." tabindex="0" [fragment]="error.fieldId">{{error.description | rpxTranslate}}</a>
</li>
</ul>
</div>
Expand Down
Loading