-
Notifications
You must be signed in to change notification settings - Fork 195
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Edit Customer backend - VIEW fix #5
base: main
Are you sure you want to change the base?
Conversation
Backend customer edit view changed to show that there is no billing or shipping inforamtion if there is no any.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It will be good if you make available a button to take the users to provide address info other than simple displaying no address message
@@ -26,12 +26,15 @@ | |||
<CustomInput v-else type="select" :select-options="billingStateOptions" | |||
v-model="customer.billingAddress.state" label="State"/> | |||
</div> | |||
<p v-else class="text-center py-8 text-gray-700"> | |||
There are is no billing address |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
direct users to provide billing address
@@ -42,6 +45,9 @@ | |||
<CustomInput v-else type="select" :select-options="shippingStateOptions" | |||
v-model="customer.shippingAddress.state" label="State"/> | |||
</div> | |||
<p v-else class="text-center py-8 text-gray-700"> | |||
There are is no shipping address |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here
Hey, I've fixed the Edit customer view which was throwing an error if there is no billing or shipping information attached to the customer.
Can you have a look ?
Commit MSG:
CustomerResource response changed.
Backend customer edit view changed to show that there is no billing or shipping inforamtion if there is no any.