From f9ca657c1bc46111039552aac9ee0a92981e6be5 Mon Sep 17 00:00:00 2001 From: Beatrice Olivera Date: Mon, 3 Sep 2018 09:11:05 +0100 Subject: [PATCH] actually changed profile image size --- app/views/users/show.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb index 17371eb..2176ca9 100644 --- a/app/views/users/show.html.erb +++ b/app/views/users/show.html.erb @@ -5,7 +5,7 @@ <% if @user.photo.url.nil? %> <%= image_tag "https://upload.wikimedia.org/wikipedia/commons/8/89/Portrait_Placeholder.png", class: "img-circle img-profile"%> <% else %> - <%= cl_image_tag @user.photo, class: "img-circle"%> + <%= cl_image_tag @user.photo, class: "img-circle img-profile"%> <% end %>