mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 16:09:52 +01:00
Pass subscribed answer IDs down in Discover views
This commit is contained in:
parent
6afa7c6277
commit
578dd9c6e6
2 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@
|
|||
%li.nav-item{ role: "presentation" }
|
||||
%a.nav-link{ href: "#comments", role: :tab, aria: { controls: "comments" }, data: { bs_toggle: :tab } }= t(".content.tab.comments")
|
||||
.tab-content.mt-3
|
||||
= render "discover/tab/answers", answers: @popular_answers
|
||||
= 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
|
||||
.col-md-5.col-sm-6
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
.tab-pane.active.fade.show{ role: :tabpanel, id: "answers" }
|
||||
- answers.each do |a|
|
||||
= render "answerbox", a: a
|
||||
= render "answerbox", a:, subscribed_answer_ids:
|
||||
|
|
Loading…
Reference in a new issue