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

added link text description #596

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions charts/xui-ao-webapp/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
apiVersion: v2
name: xui-ao-webapp
home: https://github.com/hmcts/rpx-xui-approve-org
version: 0.2.16
version: 0.2.17
description: Expert UI
maintainers:
- name: HMCTS RPX XUI
dependencies:
- name: nodejs
version: 2.4.1
repository: '@hmctspublic'
repository: 'https://hmctspublic.azurecr.io/helm/v1/repo/'
- name: redis
version: 16.11.3
repository: "https://charts.bitnami.com/bitnami"
condition: redis.enabled
- name: idam-pr
version: ~2.2.6
repository: '@hmctspublic'
repository: 'https://hmctspublic.azurecr.io/helm/v1/repo/'
condition: idam-pr.enabled
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<div class="hmcts-header__container">
<div class="hmcts-width-container">
<div class="hmcts-header__logo">
<a class="hmcts-header__link" [routerLink]="'/'" [attr.aria-label]="serviceName.name" >{{serviceName.name}}</a>
<a class="hmcts-header__link" [routerLink]="'/'" [attr.aria-description]="serviceName.name" >{{serviceName.name}}</a>
</div>
<div class="hmcts-header__content">
<nav class="hmcts-header__navigation" attr.aria-label="{{navigation.label}}">
<ul class="hmcts-header__navigation-list" >
<li *ngFor="let item of navigation.items; let i = index" class="hmcts-header__navigation-item">
<a class="hmcts-header__navigation-link" *ngIf="userValue || item.text=='Sign out'" (click)="onEmitEvent(i)" [routerLink]="[item.href]">{{item.text}}</a>
<a class="hmcts-header__navigation-link" *ngIf="userValue || item.text=='Sign out'" aria-description="Page Sign out" (click)="onEmitEvent(i)" [routerLink]="[item.href]">{{item.text}}</a>
</li>
</ul>
</nav>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h1 class="hmcts-page-heading__title govuk-heading-xl">Active organisations</h1>
<td class="govuk-table__cell"><span class="hmcts-badge hmcts-badge--green">{{org.status}}</span>
</td>
<td class="govuk-table__cell">
<a class="govuk-link" [routerLink]="['/organisation-details', org.organisationId]">View</a>
<a class="govuk-link" [routerLink]="['/organisation-details', org.organisationId]" aria-description="View Organisation">View</a>
</td>
</tr>
</thead>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<main id="content" class="govuk-main-wrapper" role="main" tabindex="-1">
<app-notification-banner-component>
<ng-container *ngIf="(activeOrgsCount$ | async) as activeOrgCount; ">
<span>{{activeOrgCount}} organisations are active. <a [routerLink]="['/active-organisation']"> Check now.</a></span>
<span>{{activeOrgCount}} organisations are active. <a [routerLink]="['/active-organisation']" aria-description="Check Active Organisations"> Check now.</a></span>
</ng-container>
<ng-container *ngIf="!(activeLoaded$ | async)">
<h3 class="govuk-heading-s">Loading active organisations...</h3>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{{type}}
</strong>
<span class="govuk-phase-banner__text">
This is a new service – your <a class="govuk-link" href="https://www.smartsurvey.co.uk/s/CCDSurvey/" target="_blank" rel="noopener noreferrer">feedback</a> will help us to improve it.
This is a new service – your <a class="govuk-link" href="https://www.smartsurvey.co.uk/s/CCDSurvey/" target="_blank" rel="noopener noreferrer" aria-description="Leave your feedback">feedback</a> will help us to improve it.
</span>
</p>
</div>
Expand Down