Field label position for List Components

Requesting native option to position Field Labels in List Components the same way it’s possible in Forms

For now, if you’d like to display the fields inline, you can add the following CSS to the page.

.form-group{
    display: inline-flex;
    float: left;
    clear: both;
}
.form-group label{
    margin-right: 8px;
}

This works perfectly @Chem.

Thank you - I will use this a lot.