-
Notifications
You must be signed in to change notification settings - Fork 19
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
unable to create a new post in vue client #36
Comments
The new post should be created only after there is some data. Clicking on the "New post" menu should only bring up the page. The creation happens when someone clicks on the "Save Post" button. |
I noticed that it's not really working locally somehow. Checking it. |
I also tried not working. How to get debug logs. I don't see anything on console. |
The problem seems to be with editor binding with quill-editor tag. It is not reflecting in the vue data and hence it is failing. |
@anurag-git I just disabled the Image_Resize options and it works. The problem still lies with the image_resize options with our vue-quill-editor. Hence it is not yet solved. |
Root cause of this issues is #30 |
It's working now. |
@anurag-git can you help with #30 without breaking newpost? |
@Rajan Let me take new changes and then try. Can you explain what has to be done now, after my fix was not reverted(or not working as expected) |
If you look at editorOptions in Newpost.vue, we're having to comment resize options.
Because uncommenting it makes the editor fail. Need to understand 'Why' is this happening (look into ../main.js) and fix it. |
content is always empty and hence the following condition fails.
if (title.length && content.length) {
The text was updated successfully, but these errors were encountered: