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/about | |
parent | c54ea07628fbf6a4e9360585cf775f70f871e3e9 (diff) |
[Bug] "script" tags must not be self-closing
Diffstat (limited to 'app/views/about')
-rw-r--r-- | app/views/about/show.html.haml | 2 |
1 files changed, 1 insertions, 1 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 |