From c77d152015a8d889f413528a1627ee09a11dc609 Mon Sep 17 00:00:00 2001 From: rays Date: Thu, 10 Sep 2026 18:16:41 +0000 Subject: [PATCH] Stop showing the skip reason next to a skipped enclosure The chip already names the kind ("image"), so the sentence beside it added nothing. A reason is now shown only when the state is an error. It is still recorded and still reaches the API and the log, where it is useful. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01AdXho5tTkjFLeUXKbEjKBh --- web/index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web/index.html b/web/index.html index 308f35a..b909ad5 100644 --- a/web/index.html +++ b/web/index.html @@ -781,8 +781,7 @@ function encBox(x){ return `
${x.state==='skipped'?kindOf(x):esc(x.state)} ${esc(kindOf(x))}${size?' \u00b7 '+size:''} - ${x.last_error&&x.state==='error'?`${esc(x.last_error)}` - :(x.last_error?`${esc(x.last_error)}`:'')} + ${x.state==='error'&&x.last_error?`${esc(x.last_error)}`:''} ${viewable?`View`:''}
`;