Moderation Checklist Fixes (#3986)

* fix: DEV-164

* fix: dev-163

* feat: DEV-162
This commit is contained in:
IMB11
2025-07-13 19:08:55 +01:00
committed by GitHub
parent 6fb125cf0f
commit 058185c7fd
4 changed files with 104 additions and 19 deletions

View File

@@ -103,6 +103,10 @@ const props = defineProps({
type: Function,
default: undefined,
},
maxVisibleOptions: {
type: Number,
default: undefined,
},
})
function getOptionLabel(option) {
@@ -263,7 +267,7 @@ const isChildOfDropdown = (element) => {
.options {
z-index: 10;
max-height: 18.75rem;
max-height: v-bind('maxVisibleOptions ? `calc(${maxVisibleOptions} * 3rem)` : "18.75rem"');
overflow-y: auto;
box-shadow:
var(--shadow-inset-sm),