trivago / prettier-plugin-twig-melody

Code formatting plugin for Prettier which can handle Twig/Melody templates
Apache License 2.0
155 stars 35 forks source link

Bug: Null coalescing operator in attribute removes curly braces #32

Closed chasegiunta closed 4 years ago

chasegiunta commented 4 years ago
<input type="text" name="fromName" value="{{ fromName ?? ' ' }}" />
<input type="text" name="fromName" value="fromName ?? ' '" />
twbartel commented 4 years ago

Will check, thanks!

twbartel commented 4 years ago

Hey Chase, I just published v0.3.9 which should fix that issue. Thanks again for reporting!

chasegiunta commented 4 years ago

Awesome, works great. Thank you!