Remove duplicate size specification for user image
Either the size or the width and height can be passed but passing both doesn't make any sense and in rails 5.0 will error.
This commit is contained in:
parent
ff97501ed0
commit
4ef7b2c651
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@
|
||||||
<% if @user && @user.id %>
|
<% if @user && @user.id %>
|
||||||
<div class='dropdown user-menu logged-in'>
|
<div class='dropdown user-menu logged-in'>
|
||||||
<a class='dropdown-toggle' data-toggle='dropdown' href="#">
|
<a class='dropdown-toggle' data-toggle='dropdown' href="#">
|
||||||
<%= user_thumbnail_tiny(@user, :size => 25, :width => 25, :height => 25)
|
<%= user_thumbnail_tiny(@user, :width => 25, :height => 25)
|
||||||
%><%= render :partial => 'layouts/inbox'
|
%><%= render :partial => 'layouts/inbox'
|
||||||
%><span class="user-button"><span class='username'><%= @user.display_name %></span>
|
%><span class="user-button"><span class='username'><%= @user.display_name %></span>
|
||||||
<b class="caret"></b></span>
|
<b class="caret"></b></span>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue