From f94c2b9f90626adc7d35ae2099ad2d325e483a1f Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 15 Sep 2026 01:42:09 +0200 Subject: [PATCH] revert: the starter chips are three short labels again MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The user, seeing four full questions stacked on the empty page: "the former way… was better". Labels, three of them, as before. Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_016fZGJNyDvERbMgS2Uc2msP --- public/js/clinicalAssistant.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/js/clinicalAssistant.js b/public/js/clinicalAssistant.js index 71f4e9ba..f088da96 100644 --- a/public/js/clinicalAssistant.js +++ b/public/js/clinicalAssistant.js @@ -2629,9 +2629,9 @@ import { '

Answers built only from your indexed library

' + '
' + examples.map(function (item) { var source = item.sourceTitle ? (' title="Available from: ' + escapeAttr(item.sourceTitle + (item.page ? ', page ' + item.page : '')) + '"') : ''; - // The question itself, not a two-word label: "Status asthma escalation" - // says nothing about what will be asked; the question does. - return ''; + // The short label, as it always was: the user asked for the earlier + // look back after seeing four full questions stacked here. + return ''; }).join('') + '
'; } @@ -2643,7 +2643,7 @@ import { examples[i] = examples[j]; examples[j] = tmp; } - return examples.slice(0, 4); + return examples.slice(0, 3); } function bindExampleButtons(root) {