-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
fixing issue 2008 getting 404 error on variant option #2021
Conversation
const variantId = template.data._id; | ||
|
||
Reaction.Router.go("product", { | ||
handle: selectedProduct.handle, | ||
handle: this.productHandle(), |
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.
the this.
should be removed so it's just productHandle()
. same for line 123
, Otherwise i get the following error Uncaught TypeError: this.productHandle is not a function
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.
done.
If you do fix the |
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.
Tested. Verified fixed.
* development: fix elasticsearch errors skip npm install outside of container on CI wait longer on CI for Docker test update CI config for Evereve add ReactionPublicCustomFolder update data_import update data_import update data_import add submodules to circle config add plugin submodules Don't reload when the main product is not in tbe modified products (reactioncommerce#2033) If default provider is not available, then add it. (reactioncommerce#2025) Dashboard panel keeps re-opening during checkout (reactioncommerce#2010) fixing issue 2008 getting 404 error on variant option (reactioncommerce#2021) Create "Tax Detail" view in Orders Dashboard (reactioncommerce#2005)
This is to fix issue Get 404 error when attempting to create an option on a new product #2008 where 404 error is shown when
Add Variant Option
is clicked. It also fixes same 404 error in another scenario whereit occurs if an option row is clickedPlease follow the steps as per issue Get 404 error when attempting to create an option on a new product #2008. Thanks