We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With the 3.0.0-alpha.0 branch, the following code:
3.0.0-alpha.0
function updateClassNode(...) { ... else { // classNode.value.chars = `${classNode.value.chars} ${classNames.join(' ')}`; } ...
Breaks this code <box xs="3" class="something"></box>
<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.
else
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With the
3.0.0-alpha.0
branch, the following code: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.The text was updated successfully, but these errors were encountered: