CSR-1392 prettier
This commit is contained in:
parent
b8bd1e4b0b
commit
03374ab013
1 changed files with 4 additions and 1 deletions
|
|
@ -1041,7 +1041,10 @@ export const actions = {
|
||||||
context.commit(storeMutations.LOCK_TOKEN, lockToken);
|
context.commit(storeMutations.LOCK_TOKEN, lockToken);
|
||||||
|
|
||||||
// if we already have the token, do not update it. pia does 2 work order submits and the value is not persisted after the first submit
|
// if we already have the token, do not update it. pia does 2 work order submits and the value is not persisted after the first submit
|
||||||
if (state.order.customerPortalLoginToken != null && state.order.customerPortalLoginToken != "00000000-0000-0000-0000-000000000000") {
|
if (
|
||||||
|
state.order.customerPortalLoginToken != null &&
|
||||||
|
state.order.customerPortalLoginToken != "00000000-0000-0000-0000-000000000000"
|
||||||
|
) {
|
||||||
context.commit(storeMutations.Customer_Portal_Login_Token, customerPortalLoginToken);
|
context.commit(storeMutations.Customer_Portal_Login_Token, customerPortalLoginToken);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue