Merge pull request #2030 from Safelite/feature/csr-2248
Feature/csr 2248
This commit is contained in:
commit
ff5efcee4d
2 changed files with 5 additions and 3 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue