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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The following snippet:
<div phx-click="toggle_password" phx-hook="focus" id="toggle_password" data-focus="credentials_password" class="absolute right-0 top-0 py-1 px-2 bg-gray-900 h-8 flex items-center"> <svg height="24px" width="24px" viewBox="0 0 100 100"> <%= if @show_password do %> <use href="/icons/eye_crossed.svg#icon"></use> <% else %> <use href="/icons/eye.svg#icon"></use> <% end %> </svg> </div>
gets formatted to
<div phx-click="toggle_password" phx-hook="focus" id="toggle_password" data-focus="credentials_password" class="absolute right-0 top-0 py-1 px-2 bg-gray-900 h-8 flex items-center" > <svg height="24px" width="24px" viewBox="0 0 100 100"> <%= if @show_password do %> <use href="/icons/eye_crossed.svg#icon"></use> <% else %> <usehref="/icons/eye.svg#icon"></use> <% end %> </svg> </div>
The use tag is altered to usehref and there is a newline inserted before the else.
use
usehref
else
prettier-plugin-eex@0.5.0 prettier@2.2.1 Erlang/OTP 24 [erts-12.0] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [jit] Elixir 1.12.1 (compiled with Erlang/OTP 24)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following snippet:
gets formatted to
The
use
tag is altered tousehref
and there is a newline inserted before theelse
.The text was updated successfully, but these errors were encountered: