From 304e4c407177ec301caa7e5a9b86e72c4140eb0d Mon Sep 17 00:00:00 2001 From: yumoqing Date: Sat, 30 May 2026 11:22:53 +0800 Subject: [PATCH] fix: wrap rl_asset_results in VScrollPanel for scrolling When many assets are returned, the results area needs scroll. Wrap the target VBox in a VScrollPanel with fixed height. --- wwwroot/view_assets.ui | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/wwwroot/view_assets.ui b/wwwroot/view_assets.ui index 915c041..167a22b 100644 --- a/wwwroot/view_assets.ui +++ b/wwwroot/view_assets.ui @@ -46,9 +46,15 @@ ] }, { - "widgettype": "VBox", - "id": "rl_asset_results", - "options": {"padding": "16px"} + "widgettype": "VScrollPanel", + "options": {"height": "600px"}, + "subwidgets": [ + { + "widgettype": "VBox", + "id": "rl_asset_results", + "options": {"padding": "16px"} + } + ] } ] }