From 1a2b289f32cc10e66c70af96349beeab7ed9ff0c Mon Sep 17 00:00:00 2001 From: Mick <119439091+mickbrowns1@users.noreply.github.com> Date: Fri, 22 May 2026 11:27:05 -0400 Subject: [PATCH] Rename pipeline sections to Full Pipeline / Partial Pipeline --- frontend/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/index.html b/frontend/index.html index f454702..fd4f855 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -1056,8 +1056,8 @@ async function loadOnboardingPipeline() {
${STAGE_ICONS.map((icon,i) => `${icon} ${STAGE_LABELS[i]}`).join('')}
- ${renderSection('With Detection Coverage', `${withRules.length} sources — 6-stage pipeline`, withRules, 'ob-with')} - ${renderSection('Parser Only', `${withoutRules.length} sources — no detection rules mapped (stages 5–6 N/A)`, withoutRules, 'ob-without')} + ${renderSection('Full Pipeline', `${withRules.length} sources — detection rules mapped (all 6 stages)`, withRules, 'ob-with')} + ${renderSection('Partial Pipeline', `${withoutRules.length} sources — no detection rules mapped (stages 5–6 N/A)`, withoutRules, 'ob-without')} ${sources.length === 0 ? '

No active sources found — sync sources on the Coverage Map first.

' : ''}` } catch(e) { if (tableEl) tableEl.innerHTML = `

${esc(e.message)}

`