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/about/show.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/views/about') 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 -- cgit