Merge pull request #286 from 3kh0/main

fix text clipping on timezone selection
This commit is contained in:
Echo
2025-06-08 20:40:49 -04:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -403,7 +403,7 @@ GEM
rubocop-ast (>= 1.45.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 4.0)
rubocop-ast (1.45.0)
rubocop-ast (1.45.1)
parser (>= 3.3.7.2)
prism (~> 1.4)
rubocop-performance (1.25.0)

View File

@@ -25,8 +25,8 @@
<%= f.select :timezone,
TZInfo::Timezone.all.map(&:identifier).sort,
include_blank: @user.timezone.blank?, class: "form-select" %>
<small>This affects how your activity graph and other time-based features are displayed.</small>
</div>
<small>This affects how your activity graph and other time-based features are displayed.</small>
<%= f.submit "Save Settings" %>
<% end %>
</section>