Skip to content
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

Fixed: Unable to select none as product store on settings page(#367) #369

Closed
wants to merge 3 commits into from

Conversation

shanmukhdutt
Copy link
Contributor

Closes #367

Short Description and Why It's Useful

Screenshots of Visual Changes before/after (If There Are Any)

IMPORTANT NOTICE - Remember to add changelog entry

Contribution and Currently Important Rules Acceptance

@@ -519,7 +519,7 @@ export default defineComponent({
async setEComStore(event: any) {
// not updating the ecomstore when the current value in vuex state and selected value are same
// or when an empty value is given (on logout)
if (this.currentEComStore.productStoreId === event.detail.value || !event.detail.value) {
if (this.currentEComStore.productStoreId === event.detail.value) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to find some other way to fix this, as removing the above check will result in error on logout(as added in comment)

@ymaheshwari1
Copy link
Contributor

Closing as will be handled differently.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Unable to select none as product store on settings page
2 participants