From 2b121077c668b73d9f0c7b27077153741b6a8a57 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 2 Jun 2026 11:26:06 +0800 Subject: [PATCH] fix: change llmage_content from VBox to VScrollPanel for right-side scrolling The model list page content area (llmage_content) had no scrollbar because it was a VBox with css:filler (overflow:hidden). Changed to VScrollPanel which provides overflow:auto, enabling scrolling when content overflows. --- wwwroot/index.ui | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wwwroot/index.ui b/wwwroot/index.ui index 1416a1c..440a309 100644 --- a/wwwroot/index.ui +++ b/wwwroot/index.ui @@ -187,10 +187,11 @@ ] }, { - "widgettype": "VBox", + "widgettype": "VScrollPanel", "id": "llmage_content", "options": { "css": "filler", + "width": "100%", "height": "100%" } }