-
Notifications
You must be signed in to change notification settings - Fork 8
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
Slug field has blank spaces when editing #50
Comments
This problem also occurs on Firefox. |
So it might be field or database related. Thanks to check, Rodrigo. |
I dont understand this issue please, explain @rodrigomanhaes @gabriellima |
Well, it was long time ago, but I think that still exists. When you try to edit this user, and you click the slug field to edit it, you can see that instead of having:
you have:
You see the blank spaces on the end? |
To see the blank spaces edit your user, and in the slug field press "Select All" |
This problem occurs in NSI site in the web, but in my localhost it didn't happen. This is really weird. |
Same happens to me here, working fine. Maybe some lib was updated in time. Someone have to check. |
Given an user exists (I did not test with a new user, just an existing one) And its slug is 'my-name' When I go to edit page I should just see 'my-name' And should not see 'my-name(.*)'
where
(.*)
represents blank spaces added to the field on edit time. Saw this on google-chrome, but don't think this is browser related, but database related.And also think that just a
slug_field.strip()
would solve this issue.The text was updated successfully, but these errors were encountered: