Skip to content

Commit

Permalink
🌸 Space: De-italicize help-text on Space#edit (zinc-collective#2223)
Browse files Browse the repository at this point in the history
  • Loading branch information
zspencer committed Mar 25, 2024
1 parent f637bea commit 5cb17b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/views/spaces/_agreements.html.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<%= render CardComponent.new(classes: "mt-3 gap-y-3") do %>
<header>
<h3><%= t('space.agreements.index.link_to') %></h3>
<p class="text-sm italic"><%= t('space.agreements.help_text') %></p>
<p class="text-sm"><%= t('space.agreements.help_text') %></p>
</header>
<div class="flex flex-wrap gap-y-6">
<%- space.agreements.each do |agreement| %>
Expand Down
2 changes: 1 addition & 1 deletion app/views/spaces/_utilities.html.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<%= render CardComponent.new(classes: "mt-3 gap-y-3") do %>
<header>
<h3><%= t('utilities.index.link_to') %></h3>
<p class="text-sm italic"><%= t('utilities.help_text') %></p>
<p class="text-sm"><%= t('utilities.help_text') %></p>
</header>

<ul>
Expand Down
2 changes: 1 addition & 1 deletion app/views/spaces/_website_settings.html.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<%= render CardComponent.new(classes: "mt-3 gap-y-3") do %>
<header>
<h3><%= t('website_settings.index.link_to') %></h3>
<p class="text-sm italic"><%= t('website_settings.help_text') %></p>
<p class="text-sm"><%= t('website_settings.help_text') %></p>
</header>

<%= form_with model: space.location, data: { turbo: false } do | web_settings_form | %>
Expand Down

0 comments on commit 5cb17b8

Please sign in to comment.