Wrap label text responsively

I put a label inside a groupBox to create a static text in a Box. Currently, the label becomes multilines only when I specify the width. I need the box wraps the text responsively, which means the text becomes multiple line if the browser size is smaller.

Hello,

What version of Jmix are you using?

Regards,
Nikita

I’m using 1.3

Hello,

You need to set the label width to 100%.

XML

<window xmlns="http://jmix.io/schema/ui/window"
        caption="msg://blankScreen.caption">
    <layout>
        <groupBox id="groupBox" expand="label">
            <label id="label" value="msg://text" htmlEnabled="true" width="100%"/>
        </groupBox>
    </layout>
</window>

Result:
image

Regards,
Nikita