Formatting
This commit is contained in:
parent
f87a64380b
commit
572831254d
1 changed files with 4 additions and 2 deletions
|
|
@ -234,8 +234,10 @@ export default {
|
||||||
},
|
},
|
||||||
isDualOrStaticRecalibration() {
|
isDualOrStaticRecalibration() {
|
||||||
const supportingItems = store.getters.lineItems.supportingItems;
|
const supportingItems = store.getters.lineItems.supportingItems;
|
||||||
|
|
||||||
return supportingItems.some((item) => item.partNumber === "RECAL STATIC" || item.partNumber === "RECAL DUAL");
|
return supportingItems.some(
|
||||||
|
(item) => item.partNumber === "RECAL STATIC" || item.partNumber === "RECAL DUAL"
|
||||||
|
);
|
||||||
},
|
},
|
||||||
displayRecalibrationWarning() {
|
displayRecalibrationWarning() {
|
||||||
return this.isDualOrStaticRecalibration;
|
return this.isDualOrStaticRecalibration;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue