-
Notifications
You must be signed in to change notification settings - Fork 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
Purchases: Form doesn't load correctly when attempting to Edit Payment Method #1264
Comments
Another report of this issue: 2448078-t. |
I suspect we get into this state because our data components display a placeholder until all data have been loaded from the server. For example, here is how this check is performed in the function isDataLoading( state ) {
return (
! state.card ||
! state.selectedPurchase.hasLoadedFromServer ||
! state.selectedSite
);
} In this particular case, I think the problem lies with the @gziolo, @rads: this is a tricky one. What would you suggest here? This probably only happens from time to time but I still think we should display an error message. That wouldn't be easy since we would have to update a bunch of components. On the other hand, we almost never handle errors correctly. This is an opportunity to fix that. |
Yes, this is very important issue that we need to solve :) We don't have ready solution yet. In Redux documentation there is nice page explaining how to handle Async Actions. The proposed solution is quite similar to what we are doing:
In this case |
Another report can be found here: 997137-t |
A few more reports of the error in 677847-f and 677740-f |
Two more reports in 677901-f |
Another report on live chat, trying to renew the bundle on lovinmindfulness.com. |
Another case from Live chat user knfusa. CC info was greyed out: 280548-chat |
Another: 2452790-t |
Also 282845-chat, noting here so I can follow up with the user once it's fixed |
One more: 2460608-t - noting for followup. |
Just so you know, there's a fix pending review (#1596). I hope we'll get it merged soon. |
@SiobhyB, @demetd, @darnelldibbles, @KokkieH, @pento, @benchilcote, @dcoleonline, @kriskarkoski, @frosty -- pinging in case to make sure you all know we merged the fix for this issue.Thanks for the reports! |
What I did:
I attempted to update my credit card details by navigating to my Purchases page, clicking on the purchase that I wished to update, and then selecting the option to Edit Payment Method.
What I expected:
I expected to be able to enter my new credit card details in a form.
What happened:
The form didn't load correctly; a blank grey outline of the fields are there but it's not possible to click into any of the fields or update them.
Testing on the latest version of Chrome (47.0.2526.73) and OSX (10.11.1).
2445258-t, 2444814-t
The text was updated successfully, but these errors were encountered: