[object Object]

← back to Stack Map Viewer

viewer: render paused health status (⏸)

fe221b0e0e744d4d9f47fd218ad77cc9de74d45f · 2026-09-22 14:49:52 -0700 · Steve Abrams

Files touched

Diff

commit fe221b0e0e744d4d9f47fd218ad77cc9de74d45f
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Tue Sep 22 14:49:52 2026 -0700

    viewer: render paused health status (⏸)
---
 index.html | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/index.html b/index.html
index 26c4653..235fdb9 100644
--- a/index.html
+++ b/index.html
@@ -419,9 +419,10 @@ function healthCell(r){
   if(r.health==='broken')return '<span style="color:#f3b6b6" title="'+esc(r.healthNote||'healthcheck: broken')+'">✗ broken</span>';
   if(r.health==='verified')return '<span style="color:#5fd0a8" title="healthcheck: scraper verified working">✓ verified</span>';
   if(r.health==='discontinued')return '<span style="color:#8a6a8a" title="'+esc(r.healthNote||'vendor site dead/moved — discontinued')+'">⊘ discontinued</span>';
+  if(r.health==='paused')return '<span style="color:#c79a4a" title="'+esc(r.healthNote||'paused — do not scrape for now')+'">⏸ paused</span>';
   return '<span style="color:#6f7d97" title="not in the scraper healthcheck set — health unknown">○ unmonitored</span>';
 }
-const HRANK={broken:0,verified:1,discontinued:3};  // broken first when ascending; discontinued last
+const HRANK={broken:0,verified:1,paused:2,discontinued:3};  // broken first when ascending
 function sortScr(rows){
   const {key,dir}=SCRSORT;
   return rows.slice().sort((a,b)=>{

← 874d7a6 viewer: render discontinued health status (⊘) distinctly fro  ·  back to Stack Map Viewer  ·  add README (durability doc: keep-alive covers it by default; 80c1277 →