fix: make the admin analytics tab scrollable inside the settings modal (#30429)

The analytics dashboard renders inside the settings modal, whose tab area clips overflowing content. Unlike the other tabs, analytics had no scroll area of its own, so on any instance with more than a handful of models or users the bottom of the model and user ranking tables was cut off and could not be reached.

The analytics wrapper now scrolls vertically, using the same scroll classes as the other settings tabs. Verified in a browser with 30 models and 45 users at 1400x900, 1280x720 and 700x900: before, wheel scrolling moved nothing; after, both tables scroll to their last row with a single scrollbar and no horizontal overflow.

Fixes #30428
This commit is contained in:
Classic298
2026-09-23 08:46:22 -05:00
committed by GitHub
parent 24c01bd76d
commit d66e5dc403
+1 -1
View File
@@ -18,7 +18,7 @@
</script>
{#if loaded}
<div class="w-full h-full pb-2">
<div class="w-full h-full overflow-y-auto scrollbar-hover pr-1.5 pb-2">
<Dashboard />
</div>
{/if}