diff options
-rw-r--r-- | app/views/about/show.html.haml | 2 | ||||
-rw-r--r-- | app/views/auth/registrations/new.html.haml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/about/show.html.haml b/app/views/about/show.html.haml index f29c5c73c..4cacb6f3c 100644 --- a/app/views/about/show.html.haml +++ b/app/views/about/show.html.haml @@ -3,7 +3,7 @@ - content_for :header_tags do %link{ rel: 'canonical', href: about_url }/ - %script{ src: '/registration.js', type: 'text/javascript', crossorigin: 'anonymous' }/ + %script{ src: '/registration.js', type: 'text/javascript', crossorigin: 'anonymous' } = render partial: 'shared/og' .grid-4 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| |