From 09336b3c10bba9e67210e096ab75d57be9ea34d2 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Thu, 6 Aug 2026 13:51:57 +0800 Subject: [PATCH] fix: tag_list_panel use cheight instead of filler for proper scrolling --- wwwroot/knowledge_bases_list/tag_form.dspy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wwwroot/knowledge_bases_list/tag_form.dspy b/wwwroot/knowledge_bases_list/tag_form.dspy index 209130d..810b005 100644 --- a/wwwroot/knowledge_bases_list/tag_form.dspy +++ b/wwwroot/knowledge_bases_list/tag_form.dspy @@ -142,7 +142,7 @@ subwidgets.append({"widgettype": "Text", "options": {"text": "勾选要添加的 # 标签列表面板 tag_list_box = {"widgettype": "VBox", "id": "tag_list_panel", - "options": {"css": "filler", "overflow": "auto", "padding": "4px", + "options": {"cheight": 14, "overflow": "auto", "padding": "4px", "border": "1px solid #e0e0e0", "borderRadius": "8px", "bgcolor": "#fcfcfc"}, "subwidgets": tag_rows}