You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue:
Previous versions of Pug/Jade supported an interpolation syntax such as:
a(href="/#{url}")
, but is not more supported in attributes.
Therefore, the link is not rendered properly in emai's action button.
Solution:
Changing following line in src/api/services/emails/passwordReset/html.pug a.f-fallback.button.button--green(href=passwordResetUrl target='_blank' style='...')
to a.f-fallback.button.button--green(href=passwordResetUrl target='_blank' style='...')
resolve the problem.
I may suggest a pullrequest if you wish.
Anyhow, have a good day :)
The text was updated successfully, but these errors were encountered:
Hi there!
Issue:
Previous versions of Pug/Jade supported an interpolation syntax such as:
a(href="/#{url}")
, but is not more supported in attributes.
Therefore, the link is not rendered properly in emai's action button.
Solution:
Changing following line in
src/api/services/emails/passwordReset/html.pug
a.f-fallback.button.button--green(href=passwordResetUrl target='_blank' style='...')
to
a.f-fallback.button.button--green(href=passwordResetUrl target='_blank' style='...')
resolve the problem.
I may suggest a pullrequest if you wish.
Anyhow, have a good day :)
The text was updated successfully, but these errors were encountered: