diff --git a/app/views/shared/_question.html.haml b/app/views/shared/_question.html.haml
index 7158cda5..f1d6100e 100644
--- a/app/views/shared/_question.html.haml
+++ b/app/views/shared/_question.html.haml
@@ -1,14 +1,15 @@
.panel.panel-default
- .media
- .media-body
- %h6.media-heading.text-muted.answerbox--question-user
- = user_screen_name q.user
- asked
- = time_ago_in_words(q.created_at)
- ago
- - if q.answer_count > 1
- ·
- %a{href: show_user_question_path(q.user.screen_name, q.id)}
- #{q.answer_count} answers
- %p.answerbox--question-text
- = q.content
\ No newline at end of file
+ .panel-body
+ .media
+ .media-body
+ %h6.media-heading.text-muted.answerbox--question-user
+ = user_screen_name q.user
+ asked
+ = time_ago_in_words(q.created_at)
+ ago
+ - if q.answer_count > 1
+ ·
+ %a{href: show_user_question_path(q.user.screen_name, q.id)}
+ #{q.answer_count} answers
+ %p.answerbox--question-text
+ = q.content
\ No newline at end of file
diff --git a/app/views/user/questions.js.erb b/app/views/user/questions.js.erb
index f648a149..b444b715 100644
--- a/app/views/user/questions.js.erb
+++ b/app/views/user/questions.js.erb
@@ -1,5 +1,5 @@
$('#questions').append('<% @questions.each do |a|
- %><%= j render 'shared/answerbox', a: a
+ %><%= j render 'shared/question', a: a
%><% end %>');
<% if @questions.next_page %>
$('#pagination').html('<%= j will_paginate @questions, renderer: BootstrapPagination::Rails, page_links: false %>');