Merge pull request #1179 from Safelite/defect/CSR-1471

CSR-1474 | Removing errant aria-labels on text-link
This commit is contained in:
scottkiener 2023-06-23 09:43:20 -04:00 committed by GitHub
commit 1bceefc36f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 10 deletions

View file

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

View file

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

View file

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

View file

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

View file

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