fix: FilterPanel when is multiline and VnTable vh on n toolbar #1657

Merged
jsegarra merged 15 commits from fix_itemFilter_multiLine into dev 2025-04-08 10:17:25 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit e435674eda - Show all commits

View File

@ -1,7 +1,7 @@
import { onMounted, nextTick, ref } from 'vue';
export function useTableHeight() {
const tableHeight = ref('100vh');
const tableHeight = ref('90vh');
onMounted(async () => {
await nextTick();

View File

@ -328,7 +328,7 @@ onMounted(async () => {
<QItem v-for="(fieldFilter, index) in fieldFiltersValues" :key="index">
<QItemSection class="col">
<VnSelect
:style="{ 'max-width': '100%' }"
class="full-width"
:label="t('params.tag')"
:model-value="fieldFilter.selectedField"
:options="moreFields"