wonderful prettier formatting changes...
This commit is contained in:
parent
326429657c
commit
2340a5da3b
1 changed files with 8 additions and 2 deletions
|
|
@ -474,9 +474,15 @@ export default {
|
|||
|
||||
let currentPartsOrQuestions = null;
|
||||
|
||||
if (currentPage !== fmgPageValues.CAPABILITY_QUESTIONS && !!pageDataCapabilityQuestions) {
|
||||
if (
|
||||
currentPage !== fmgPageValues.CAPABILITY_QUESTIONS &&
|
||||
!!pageDataCapabilityQuestions
|
||||
) {
|
||||
currentPartsOrQuestions = pageDataCapabilityQuestions?.partsOrQuestions;
|
||||
} else if (currentPage !== fmgPageValues.MOLDING_QUESTIONS && !!pageDataMoldingQuestions) {
|
||||
} else if (
|
||||
currentPage !== fmgPageValues.MOLDING_QUESTIONS &&
|
||||
!!pageDataMoldingQuestions
|
||||
) {
|
||||
currentPartsOrQuestions = pageDataMoldingQuestions?.partsOrQuestions;
|
||||
} else if (currentPage !== fmgPageValues.VEHICLE_PARTS && !!pageDataVehicleParts) {
|
||||
currentPartsOrQuestions = pageDataVehicleParts?.partsOrQuestions;
|
||||
|
|
|
|||
Loading…
Reference in a new issue