Skip to content

Commit 9ca8901

Browse files
authored
Add UTF-8 charset meta tag to BetterTogether layouts (#1019)
## Summary - ensure default HTML layouts declare UTF-8 charset - confirm mailer layouts keep explicit charset headers ## Testing - `bundle exec rubocop` *(fails: bundler: command not found: rubocop)* - `bundle exec brakeman -q -w2` *(fails: bundler: command not found: brakeman)* - `bundle exec bundler-audit --update` *(fails: bundler: command not found: bundler-audit)* - `bin/codex_style_guard` *(fails: bundler: command not found: rubocop)* - `bin/ci` *(fails: bundler: command not found: rails)* ------ https://chatgpt.com/codex/tasks/task_e_689b7bc194088321addfe33901ffc9b7
2 parents 43f065f + 7f6ab07 commit 9ca8901

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

app/views/layouts/better_together/application.html.erb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<!DOCTYPE html>
22
<html lang="<%= I18n.locale %>">
33
<head>
4+
<meta charset="utf-8">
45
<% if ENV["SENTRY_CLIENT_KEY"] %>
56
<script src="https://js-de.sentry-cdn.com/<%= ENV["SENTRY_CLIENT_KEY"] %>.min.js" crossorigin="anonymous"></script>
67
<% end %>

app/views/layouts/better_together/turbo_native.html.erb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<!DOCTYPE html>
22
<html lang="<%= I18n.locale %>">
33
<head>
4+
<meta charset="utf-8">
45
<% if ENV["SENTRY_CLIENT_KEY"] %>
56
<script src="https://js-de.sentry-cdn.com/<%= ENV["SENTRY_CLIENT_KEY"] %>.min.js" crossorigin="anonymous"></script>
67
<% end %>

0 commit comments

Comments
 (0)