-
Notifications
You must be signed in to change notification settings - Fork 358
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
Making tags more readable #9320
Making tags more readable #9320
Conversation
84d91cb
to
14fd627
Compare
|
||
let text; | ||
if (Array.isArray(value)) { | ||
text = value.join('\n'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of \n
, should we be using <br>
? I'm kind of surprised that \n
works.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried using
but it didn't seem to work. I might be doing it wrong but when I do text = value.join('<br>');
the
shows up as actual text instead of a line break
Backported to
|
Making tags more readable (cherry picked from commit 1f5c90e)
Old:

New:
