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.
This commit is contained in:
yumoqing 2026-06-02 11:26:06 +08:00
parent 6cafd70b34
commit 2b121077c6

View File

@ -187,10 +187,11 @@
]
},
{
"widgettype": "VBox",
"widgettype": "VScrollPanel",
"id": "llmage_content",
"options": {
"css": "filler",
"width": "100%",
"height": "100%"
}
}