flexi icon indicating copy to clipboard operation
flexi copied to clipboard

CSS class plus Flexi attributes are broke

Open gtb104 opened this issue 2 years ago • 0 comments

With the 3.0.0-alpha.0 branch, the following code:

function updateClassNode(...) {
  ...
  else {
    // classNode.value.chars = `${classNode.value.chars} ${classNames.join(' ')}`;
  }
  ...

Breaks this code <box xs="3" class="something"></box>

This else block is commented out, so it never appends the generated class names to an existing class string.

gtb104 avatar Jul 21 '23 16:07 gtb104