Responsible note back to the footer, above the question nav
Deploy / deploy (push) Successful in 1m2s

Under the title it read as asking for feedback before the visitor had
seen anything - it's meta, it closes the page rather than opening it.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Bendik Aagaard Lynghaug
2026-08-12 23:48:35 +02:00
co-authored by Claude Sonnet 5
parent f1d835d107
commit 3d8af23167
2 changed files with 9 additions and 10 deletions
+6 -6
View File
@@ -177,12 +177,6 @@ fn QuestionView(
description=question.description.clone()
show_yes=question_id == "/"
/>
{question
.responsible
.clone()
.map(|r| {
view! { <ResponsibleNote responsible=r/> }
})}
<div class="alternatives">
<For
each={
@@ -220,6 +214,12 @@ fn QuestionView(
}
/>
</div>
{question
.responsible
.clone()
.map(|r| {
view! { <ResponsibleNote responsible=r/> }
})}
<QuestionNav current_id=question_id has_chain=has_chain/>
}
.into_any()