Recurring bug in Playground UI for User Message Field

There seems to be a recurring bug in the playground UI - at least on my end - whereby the text is not properly wrapped within the user message container.
Absent of a horizontal scroll bar, this leads to issues in handling larger amounts of input thanks.

I have noticed this briefly at the beginning of last week already and now again. Perhaps there is a common root cause giving rise to this.

1 Like

Confirmed. I had not noted this before your post.

The cause is inline style, being applied to p tags:

.ProseMirror {
	word-wrap: break-word;
	white-space: pre-wrap;
	white-space: break-spaces;
	font-variant-ligatures: none;
	font-feature-settings: "liga" 0;
}

Which can be rectified by:

word-wrap: anywhere !important;

1 Like