CSR-1471 | Errant aria-label removed

This commit is contained in:
Scott Kiener 2023-06-23 09:30:33 -04:00
parent 5e45ef0427
commit 4ab88a3e79
5 changed files with 5 additions and 10 deletions

View file

@ -16,8 +16,7 @@
:text="getRouterLinkDisplayTextFromCopy(copy)"
href="#!"
@click-event="$emit('textLinkClicked', getRouterLinkRouteFromCopy(copy))"
:data-bs-target="'#' + getRouterLinkRouteFromCopy(copy)"
aria-label="Modal window" />
:data-bs-target="'#' + getRouterLinkRouteFromCopy(copy)" />
</span>
<span v-else v-html="copy"></span>
</span>

View file

@ -38,8 +38,7 @@
args: getRouterLinkRouteFromCopy(copy),
})
"
:data-bs-target="'#' + getRouterLinkRouteFromCopy(copy)"
aria-label="Modal window" />
:data-bs-target="'#' + getRouterLinkRouteFromCopy(copy)"/>
</span>
</template>
</li>

View file

@ -14,8 +14,7 @@
linkType="text"
:text="mobileLocationLinkText"
href="#!"
@click-event="openModal"
aria-label="Modal window" />
@click-event="openModal" />
</div>
<div v-show="errorMessage" class="row my-1 form-test-error">
<span class="d-inline-flex small mt-0 center-error-message" role="alert">

View file

@ -6,8 +6,7 @@
linkType="text"
:text="serviceZipLinkText"
href="#!"
@click-event="openModal"
aria-label="Modal window" />
@click-event="openModal" />
</div>
</div>
<modal

View file

@ -26,8 +26,7 @@
@click-event="
$emit('textLinkClicked', getRouterLinkRouteFromCopy(copy))
"
:data-bs-target="'#' + getRouterLinkRouteFromCopy(copy)"
aria-label="Modal window" />
:data-bs-target="'#' + getRouterLinkRouteFromCopy(copy)" />
</span>
<span v-else v-html="copy"></span>
</template>