Browse Source

Merge pull request #3101 from nocodb/feat/gui-v2-project-meta-scroll

feat(gui-v2): settings modal overflow
pull/3110/head
navi 2 years ago committed by GitHub
parent
commit
30162138f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui-v2/components/dashboard/settings/Metadata.vue
  2. 3
      packages/nc-gui-v2/components/dashboard/settings/Modal.vue
  3. 2
      packages/nc-gui-v2/components/dashboard/settings/UIAcl.vue

2
packages/nc-gui-v2/components/dashboard/settings/Metadata.vue

@ -86,6 +86,7 @@ const columns = [
</div> </div>
</a-button> </a-button>
</div> </div>
<div class="max-h-600px overflow-y-auto">
<a-table <a-table
class="w-full" class="w-full"
size="small" size="small"
@ -101,6 +102,7 @@ const columns = [
bordered bordered
/> />
</div> </div>
</div>
<div class="flex place-content-center w-2/5"> <div class="flex place-content-center w-2/5">
<div v-if="isDifferent"> <div v-if="isDifferent">
<a-button v-t="['a:proj-meta:meta-data:sync']" class="nc-btn-metasync-sync-now" type="primary" @click="syncMetaDiff"> <a-button v-t="['a:proj-meta:meta-data:sync']" class="nc-btn-metasync-sync-now" type="primary" @click="syncMetaDiff">

3
packages/nc-gui-v2/components/dashboard/settings/Modal.vue

@ -149,6 +149,7 @@ watch(
<style scoped> <style scoped>
.modal-body { .modal-body {
@apply min-h-[75vh]; @apply h-[75vh];
@apply overflow-y-auto;
} }
</style> </style>

2
packages/nc-gui-v2/components/dashboard/settings/UIAcl.vue

@ -120,6 +120,7 @@ const columns = [
</div> </div>
</a-button> </a-button>
</div> </div>
<div class="max-h-600px overflow-y-auto">
<a-table <a-table
class="w-full" class="w-full"
size="small" size="small"
@ -163,4 +164,5 @@ const columns = [
</a-table> </a-table>
</div> </div>
</div> </div>
</div>
</template> </template>

Loading…
Cancel
Save