Skip to content

Commit

Permalink
Merge pull request #1199 from Retrospring/fix/missing-subscribed-answ…
Browse files Browse the repository at this point in the history
…ers-in-views

Fix remaining missing subscribed answers in views
  • Loading branch information
raccube authored May 7, 2023
2 parents 578dd9c + f15cb93 commit 355712b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/views/discover/index.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
.tab-content.mt-3
= render "discover/tab/answers", answers: @popular_answers, subscribed_answer_ids: @subscribed_answer_ids
= render "discover/tab/questions", questions: @popular_questions
= render "discover/tab/discussed", comments: @most_discussed
= render "discover/tab/discussed", comments: @most_discussed, subscribed_answer_ids: @subscribed_answer_ids
.col-md-5.col-sm-6
%h2= t(".people.heading")
%p= t(".people.description")
Expand Down
2 changes: 1 addition & 1 deletion app/views/discover/tab/_discussed.html.haml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.tab-pane.fade{ role: :tabpanel, id: "comments" }
- comments.each do |a|
= render "answerbox", a: a
= render "answerbox", a:, subscribed_answer_ids:
2 changes: 1 addition & 1 deletion app/views/user/show.turbo_stream.haml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= turbo_stream.append "answers" do
- @answers.each do |a|
= render "answerbox", a:
= render "answerbox", a:, subscribed_answer_ids: @subscribed_answer_ids

= turbo_stream.update "paginator" do
- if @more_data_available
Expand Down

0 comments on commit 355712b

Please sign in to comment.