We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When you click the edit post button the title, body, tags etc... should show in the editor without needing to reload the page.
The editor is blank until you refresh the page or go to another draft and back again.
Introduced in #2054
This redirects to the editor before the user's metadata has been updated with the new draft
busy/src/client/post/Write/editorActions.js
Line 37 in 0520afd
The solution would be to redirect once the promise has been fulfilled
promise: addDraftMetadata(post).then(postMetadata => { if (redirect) dispatch(push(`/editor?draft=${post.id}`)); return postMetadata; }) ...
The text was updated successfully, but these errors were encountered:
Sekhmet
No branches or pull requests
Expected behavior
When you click the edit post button the title, body, tags etc... should show in the editor without needing to reload the page.
Actual behavior
The editor is blank until you refresh the page or go to another draft and back again.
How to reproduce
Recording Of The Bug
Possible solution
Introduced in #2054
This redirects to the editor before the user's metadata has been updated with the new draft
busy/src/client/post/Write/editorActions.js
Line 37 in 0520afd
The solution would be to redirect once the promise has been fulfilled
The text was updated successfully, but these errors were encountered: