Skip to content

Commit

Permalink
#68 - added condition isCustomerLoggedIn for addresses component
Browse files Browse the repository at this point in the history
  • Loading branch information
szafran89 committed Dec 21, 2018
1 parent 6e4cbfe commit 5bc8594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion view/frontend/web/js/components/steps/TheShippingStep.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
>
<h2>Shipping address</h2>
<form>
<CustomerAddresses />
<CustomerEmailField
v-if="!isCustomerLoggedIn"
ref="customerEmail"
@ready="isReady => customerEmailReadyToSubmit = isReady"
/>
<CustomerAddresses v-if="isCustomerLoggedIn"/>
<ShippingAddressForm
ref="shippingsAddressForm"
@ready="isReady => shippingAddressReadyToSubmit = isReady"
Expand Down

0 comments on commit 5bc8594

Please sign in to comment.