Browse Source

#1675 scroll filter initial fix

pull/1714/head
Naman Anand 2 years ago
parent
commit
f9c0a25041
  1. 2
      packages/nc-gui/components/project/spreadsheet/components/columnFilter.vue
  2. 2
      packages/nc-gui/components/project/spreadsheet/components/sortListMenu.vue

2
packages/nc-gui/components/project/spreadsheet/components/columnFilter.vue

@ -1,7 +1,7 @@
<template>
<div
class="backgroundColor pa-2"
style="width:530px"
style="width:530px; max-height: 500px; overflow-y:scroll;"
>
<div class="grid" @click.stop>
<template v-for="(filter,i) in filters" dense>

2
packages/nc-gui/components/project/spreadsheet/components/sortListMenu.vue

@ -27,7 +27,7 @@
</v-btn>
</v-badge>
</template>
<div class="backgroundColor pa-2" style="min-width: 330px">
<div class="backgroundColor pa-2" style="min-width: 330px; max-height: 500px; overflow-y:scroll;">
<div class="sort-grid" @click.stop>
<template v-for="(sort,i) in sortList" dense>
<v-icon :key="i + 'icon'" class="nc-sort-item-remove-btn" small @click.stop="sortList.splice(i,1)">

Loading…
Cancel
Save