Skip to content

Commit

Permalink
Add "Transfer Time" text to mobile view (#767)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmartincor authored Nov 6, 2024
1 parent d658c0e commit e782a03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/users/show.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
<li>
<%= link_to edit_user_path(@user) do %>
<%= glyph :pencil, t('global.edit') %>
<span class="hidden-xs hidden-sm"><%= t "global.edit" %></span>
<span><%= t "global.edit" %></span>
<% end %>
</li>
<% end %>
<% if admin? || @user != current_user %>
<li>
<%= link_to new_transfer_path(id: @user.id, destination_account_id: @member.account.id) do %>
<%= glyph :time, t('global.give_time') %>
<span class="hidden-xs hidden-sm"><%= t "global.give_time" %></span>
<span><%= t "global.give_time" %></span>
<% end %>
</li>
<% end %>
Expand Down

0 comments on commit e782a03

Please sign in to comment.