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
What version of prettier-plugin-tailwindcss are you using? v0.6.5
prettier-plugin-tailwindcss
What version of Tailwind CSS are you using? v3.4.4
What version of Node.js are you using? v18.20.4
What package manager are you using? Yarn
What operating system are you using? macOS
Describe your issue
<ul [class]="'pagination' + (size ? ' pagination-' + size : '')">
in 0.5.3, this code is unchanged. in 0.6.5, it is changed to
<ul [class]="'pagination' + (size ? 'pagination-' + size : '')">
This was discussed previously in issue #285. It seems like it was fixed in #288, but apparently not in this case.
The text was updated successfully, but these errors were encountered:
what templating language is this? Angular?
Sorry, something went wrong.
Yes, this is Angular.
Same in template strings
// React <div className={`text-black${condition ? ' bg-green': ''}`} />
becomes
<div className={`text-black${condition ? 'bg-green': ''}`} />
thecrypticace
No branches or pull requests
What version of
prettier-plugin-tailwindcss
are you using?v0.6.5
What version of Tailwind CSS are you using?
v3.4.4
What version of Node.js are you using?
v18.20.4
What package manager are you using?
Yarn
What operating system are you using?
macOS
Describe your issue
in 0.5.3, this code is unchanged.
in 0.6.5, it is changed to
This was discussed previously in issue #285.
It seems like it was fixed in #288, but apparently not in this case.
The text was updated successfully, but these errors were encountered: