diff options
author | Fire Demon <firedemon@creature.cafe> | 2020-09-19 15:55:05 -0500 |
---|---|---|
committer | Fire Demon <firedemon@creature.cafe> | 2020-09-19 15:55:05 -0500 |
commit | 2b2c23ed0dcd9846bcab0206baa266e959ec35d7 (patch) | |
tree | 3e66fdc738c12e0dce2cf6853c41f2f1297c59b3 /app/views/auth | |
parent | c54ea07628fbf6a4e9360585cf775f70f871e3e9 (diff) |
[Bug] "script" tags must not be self-closing
Diffstat (limited to 'app/views/auth')
-rw-r--r-- | app/views/auth/registrations/new.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/auth/registrations/new.html.haml b/app/views/auth/registrations/new.html.haml index b9033f553..ab2d33d69 100644 --- a/app/views/auth/registrations/new.html.haml +++ b/app/views/auth/registrations/new.html.haml @@ -2,7 +2,7 @@ = t('auth.register') - content_for :header_tags do - %script{ src: '/registration.js', type: 'text/javascript', crossorigin: 'anonymous' }/ + %script{ src: '/registration.js', type: 'text/javascript', crossorigin: 'anonymous' } = render partial: 'shared/og', locals: { description: description_for_sign_up } = simple_form_for(resource, as: resource_name, url: registration_path(resource_name), html: { novalidate: false }) do |f| |