Missing inline style classes for List component [fixed in 4.1.5]

Hello,

When adding List component and changing default style Unordered to Inline, list items appear to be missing necessary inline classes list-inline-item.

Current

<ul class="list-inline">
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
    <li>Item 4</li>
</ul>

Should be

<ul class="list-inline">
    <li class="list-inline-item">Item 1</li>
    <li class="list-inline-item">Item 2</li>
    <li class="list-inline-item">Item 3</li>
    <li class="list-inline-item">Item 4</li>
</ul>

Cheers

Thank you for reporting this issue! The bugfix will be part of the upcoming 4.1.5 release.

Right now the classes will show up if you close/open the design (or duplicate the List), which of course is inconvenient.