Merge pull request #2030 from Safelite/feature/csr-2248

Feature/csr 2248
This commit is contained in:
chloeherdsafelite 2024-10-16 15:42:53 -04:00 committed by GitHub
commit ff5efcee4d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 3 deletions

View file

@ -78,7 +78,7 @@
</ul> </ul>
<!-- End of body text parsing --> <!-- End of body text parsing -->
<div <div
class="package-footer fw-bold caption ms-n6" class="package-footer fw-bold caption ms-n6 mt-4"
v-if="this.buttonFooterCopy" v-if="this.buttonFooterCopy"
v-html="this.buttonFooterCopy"></div> v-html="this.buttonFooterCopy"></div>
</div> </div>
@ -138,7 +138,7 @@ export default {
<style lang="scss"> <style lang="scss">
.package-main { .package-main {
.package-wrapper { .package-wrapper {
margin: 0.5rem 0; margin: 1rem 0;
@include media-breakpoint-up(md) { @include media-breakpoint-up(md) {
margin: 1rem 0.5rem; margin: 1rem 0.5rem;
display: flex; display: flex;

View file

@ -1627,7 +1627,9 @@ export const actions = {
const partialLineItemsObjects = context.getters.order.lineItems.glassParts?.map( const partialLineItemsObjects = context.getters.order.lineItems.glassParts?.map(
(lineItem) => ({ (lineItem) => ({
partNumber: lineItem.partNumber, partNumber: lineItem.partNumber,
recalibrationType: lineItem.recalibrationType ? escapeRecalibrationType(lineItem.recalibrationType) : undefined, recalibrationType: lineItem.recalibrationType
? escapeRecalibrationType(lineItem.recalibrationType)
: undefined,
}) })
); );