diff --git a/app/components/DefectFeed.vue b/app/components/DefectFeed.vue new file mode 100644 index 0000000..4107fac --- /dev/null +++ b/app/components/DefectFeed.vue @@ -0,0 +1,47 @@ + + + diff --git a/app/components/DotMap.vue b/app/components/DotMap.vue index a6cd438..2c58e95 100644 --- a/app/components/DotMap.vue +++ b/app/components/DotMap.vue @@ -19,6 +19,10 @@ const props = defineProps<{ cap?: number }>() +// Forward a Section click up so the page can open that section's verbatim modal +// (T8); BoardView owns the click, DotMap just relays the id. +defineEmits<{ select: [sectionId: string] }>() + const cap = computed(() => props.cap ?? 10) // Group the feed by section, preserving its newest-first order. @@ -56,7 +60,7 @@ function dotStyle(index: number) {