]> git.openstreetmap.org Git - rails.git/commitdiff
Remove duplicate size specification for user image
authorTom Hughes <tom@compton.nu>
Fri, 2 Jun 2017 18:26:33 +0000 (19:26 +0100)
committerTom Hughes <tom@compton.nu>
Fri, 2 Jun 2017 19:27:07 +0000 (20:27 +0100)
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.

app/views/layouts/_header.html.erb

index a8811c6c9c39ff27842ba803faef9aa651fb5036..2b7d6313e358b1f9cc760d12141537e0db330bb3 100644 (file)
@@ -57,7 +57,7 @@
     <% if @user && @user.id %>
       <div class='dropdown user-menu logged-in'>
         <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'
         %><span class="user-button"><span class='username'><%= @user.display_name %></span>
           <b class="caret"></b></span>