ESLint from merges
This commit is contained in:
parent
65c5e0ec3c
commit
51b7dc961e
7 changed files with 4 additions and 9 deletions
|
|
@ -139,7 +139,7 @@ function defineGlobalTpaSearchRules() {
|
|||
return errorMessages.TPA_SEARCH_SHOP_FORMAT;
|
||||
}
|
||||
} else {
|
||||
if (value.length != 5) {
|
||||
if (value.length !== 5) {
|
||||
return errorMessages.TPA_SEARCH_ZIP_FORMAT;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -373,7 +373,7 @@ export default {
|
|||
const label = this.cartOrder.damage.glassToReplace?.length > 0
|
||||
? this.getCmsContent(this.widget.warrantyText, widgetFields.TEXT_BLOCK_WIDGET.TEXT)
|
||||
: this.getCmsContent(this.widget.guaranteeText, widgetFields.TEXT_BLOCK_WIDGET.TEXT);
|
||||
return {
|
||||
return {
|
||||
name: label,
|
||||
cartItemType: cartItemType.WARRANTY,
|
||||
partType: partTypeStrings.WARRANTY,
|
||||
|
|
|
|||
|
|
@ -42,13 +42,11 @@
|
|||
<script>
|
||||
import baseInputButton from '@/digital-components/base-input-button/base-input-button.vue';
|
||||
import inputButtonWrapperMixin from '@/mixins/input-button-wrapper-mixin';
|
||||
import loader from '@/ux-components/loader/loader.vue';
|
||||
|
||||
export default {
|
||||
name: 'tpa-shop-list-button',
|
||||
components: {
|
||||
baseInputButton,
|
||||
loader
|
||||
baseInputButton
|
||||
},
|
||||
mixins: [inputButtonWrapperMixin],
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
<template>
|
||||
<div
|
||||
v-if="open"
|
||||
|
|
|
|||
|
|
@ -238,7 +238,7 @@ export default {
|
|||
},
|
||||
orderConfirmationUpdateAppointmentText() {
|
||||
let content = '';
|
||||
if(this.isNoComp) {
|
||||
if (this.isNoComp) {
|
||||
content = this.getCmsContentWithCustomValues(
|
||||
this.widgets.emailConfirmationNoComp,
|
||||
widgetFields.CONTENT_GROUP_WIDGET.BODY_TEXT
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
/* eslint-disable max-len */
|
||||
// Components
|
||||
import tpaSearch from '@/layouts/tpa-search/tpa-search.vue';
|
||||
|
||||
|
|
|
|||
|
|
@ -149,7 +149,6 @@ import bailoutMessage from '@/constants/bailoutMessage';
|
|||
import settleAllPromises from '@/helpers/layout-helper';
|
||||
import issPageValues from '@/router/router-constants/issPage-values';
|
||||
|
||||
|
||||
export default {
|
||||
name: 'tpa-search',
|
||||
components: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue