Skip to content

Commit

Permalink
Correct meta tags syntax (#3672)
Browse files Browse the repository at this point in the history
meta tags are void elements, so this is the correct syntax for them. See also: https://developer.mozilla.org/en-US/docs/Glossary/Void_element
  • Loading branch information
coorasse committed Mar 2, 2024
1 parent 96a0f66 commit 06c9f5c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/views/layouts/rails_admin/_head.html.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<meta content="width=device-width, initial-scale=1" name="viewport; charset=utf-8"/>
<meta content="NONE,NOARCHIVE" name="robots"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta content="width=device-width, initial-scale=1" name="viewport; charset=utf-8">
<meta content="NONE,NOARCHIVE" name="robots">
<%= csrf_meta_tag %>
<% case RailsAdmin::config.asset_source
when :webpacker %>
Expand Down

0 comments on commit 06c9f5c

Please sign in to comment.