CSR-731 | Changes to work with latest merge from dev

This commit is contained in:
Scott Kiener 2022-10-27 15:50:24 -04:00
parent e9453b250d
commit 57e39be1b6
2 changed files with 2 additions and 2 deletions

View file

@ -172,7 +172,7 @@ export default ({
return !!partNumberMatches.length;
},
glassToReplaceContainsGlassLocation(glassLocation) {
const glassLocationMatches = this.$store.getters.order.damage.glassToReplace.filter(glassToReplace => glassToReplace.glassLocation === glassLocation);
const glassLocationMatches = this.$store.getters.order.damage.glassToReplace.filter(glassToReplace => glassToReplace.location === glassLocation);
return !!glassLocationMatches.length;
},
},

View file

@ -18,7 +18,7 @@
<template v-else v-for="copy in splitCopyOnCMSPlaceHolder(listItem)" :key="copy">
<span v-if="!doesCopyContainTextLink(copy)" v-html="copy"></span>
<span v-else>
<textLink linkType="dashedUnderline" :text="getLinkDisplayTextFromCopy(copy)" href="#!" data-bs-toggle="modal" :data-bs-target="'#' + getLinkTargetFromCopy(copy)" aria-label="Modal window" />
<textLink linkType="text" :text="getLinkDisplayTextFromCopy(copy)" href="#!" data-bs-toggle="modal" :data-bs-target="'#' + getLinkTargetFromCopy(copy)" aria-label="Modal window" />
</span>
</template>
</li>