Fixing the filter labels dropdown menu

It wasn't using the new popper interface
This commit is contained in:
Cody Jackson 2024-09-25 16:03:33 -07:00 committed by Francesco Torchia
parent 1b20e59566
commit 66a81fe065
No known key found for this signature in database
GPG Key ID: E6D011B7415D4393

View File

@ -126,8 +126,10 @@ export default {
</template> </template>
<v-dropdown <v-dropdown
popperClass="filter-label"
trigger="click" trigger="click"
placement="bottom-end" placement="bottom-end"
:distance="20"
> >
<slot name="header"> <slot name="header">
<button ref="actionDropDown" class="btn bg-primary mr-10"> <button ref="actionDropDown" class="btn bg-primary mr-10">
@ -137,7 +139,7 @@ export default {
</button> </button>
</slot> </slot>
<template slot="popover"> <template #popper>
<div class="filter-popup"> <div class="filter-popup">
<div> <div>
<ArrayList <ArrayList
@ -247,3 +249,9 @@ export default {
color: var(--error); color: var(--error);
} }
</style> </style>
<style lang="scss">
.filter-label .v-popper__arrow-container {
display: none;
}
</style>