I'm developing a widget for ExpB and I'd like to improve the appearance of the messages I display in the Alert component
I would like the message in the Alert component to appear on just one line.
The figure shows the error message (type='error') broken into more than one line.
The component (Alert) is inside the Label with className= {css}, where,
const css = 'd-flex align-items-center align-items-baseline';
The style (CSS) used in the Label allows adjusting all components in the same line, but the Alert does not take advantage of this property of the Label.
How can I set the Alert to use the spaces available in the Label, or use another technique to not break the message?
Thank you in advance for any help.