Retrospring/app/views/question/show.turbo_stream.haml

13 lines
436 B
Plaintext
Raw Normal View History

= turbo_stream.append "answers" do
- @answers.each do |a|
= render "answerbox", a: a, show_question: false
= turbo_stream.update "paginator" do
- if @more_data_available
2023-01-21 10:55:57 -08:00
= button_to t("voc.load"), question_path(@question.user.screen_name, @question.id),
class: "btn btn-light",
method: :get,
params: { last_id: @answers_last_id },
2023-03-05 09:57:25 -08:00
data: { hotkey: "." },
2023-01-21 10:55:57 -08:00
form: { data: { turbo_stream: true } }