fix(frontend): remove fixed height from ManySelect (#2898)

* fix(frontend): remove fixed height from ManySelect

Frontend development is not my passion, there might be a better fix.

I've tested my changes in all places that I found using the chganed components (ManySelect, ScrollablePanel):

- Changelog filters
- Version filters
- Download dialog
- Search filters

Fixes #2334

* Revert incorrect merge

* fix merge conflict
This commit is contained in:
Erb3
2025-06-05 00:07:32 +02:00
committed by GitHub
parent 72340790e5
commit 448ae5a2b7
2 changed files with 2 additions and 1 deletions

View File

@@ -34,7 +34,7 @@
"
/>
</div>
<ScrollablePanel v-if="search" class="h-[17rem]">
<ScrollablePanel v-if="search">
<Button
v-for="(option, index) in filteredOptions"
:key="`option-${index}`"

View File

@@ -100,5 +100,6 @@ function onScroll({ target: { scrollTop, offsetHeight, scrollHeight } }) {
overflow-y: auto;
overflow-x: hidden;
position: relative;
max-height: 19rem;
}
</style>