From ff45f4f6a85dd8d469e953668df75a50387283f8 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Sat, 21 Mar 2026 00:27:57 -0700 Subject: [PATCH] feat(survey): implement SurveyView with navigation wiring --- web/src/components/InterviewCard.vue | 6 + web/src/router/index.ts | 1 + web/src/views/InterviewsView.vue | 11 +- web/src/views/SurveyView.vue | 718 ++++++++++++++++++++++++++- 4 files changed, 725 insertions(+), 11 deletions(-) diff --git a/web/src/components/InterviewCard.vue b/web/src/components/InterviewCard.vue index dea5313..1955f7d 100644 --- a/web/src/components/InterviewCard.vue +++ b/web/src/components/InterviewCard.vue @@ -12,6 +12,7 @@ const props = defineProps<{ const emit = defineEmits<{ move: [jobId: number, preSelectedStage?: PipelineStage] prep: [jobId: number] + survey: [jobId: number] }>() // Signal state @@ -180,6 +181,11 @@ const columnColor = computed(() => {