From 2b2c23ed0dcd9846bcab0206baa266e959ec35d7 Mon Sep 17 00:00:00 2001 From: Fire Demon Date: Sat, 19 Sep 2020 15:55:05 -0500 Subject: [Bug] "script" tags must not be self-closing --- app/views/auth/registrations/new.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/views/auth/registrations') 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| -- cgit