You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using quill-editor in our application to create a resume. Since all spaces are converted to (non breaking space), the printable version created by LateX is broken (line doesn't break at the right space).
Reverting to 2.0.2 works.
Steps for Reproduction
Use quill-editor in an application (angular) with the version 2.0.3
Enter a string with spaces
Verify the value of the input (all spaces are converted to )
Expected behavior:
Input: This is a test
Output: This is a test
Actual behavior:
Input: This is a test
Output: This&nbps;is&nbps;a&nbps;test
We are using quill-editor in our application to create a resume. Since all spaces are converted to
(non breaking space), the printable version created by LateX is broken (line doesn't break at the right space).Reverting to 2.0.2 works.
Steps for Reproduction
Expected behavior:
Input:
This is a test
Output:
This is a test
Actual behavior:
Input:
This is a test
Output:
This&nbps;is&nbps;a&nbps;test
Platforms:
Angular application running on latest browser (tried safari, chrome, chromium, firefox)
Version:
The issue is located in this commit : 07b68c9 where you can see line 374 :
return escapedText.replaceAll(' ', ' ');
The text was updated successfully, but these errors were encountered: