mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 10:28:05 +00:00
* fix(nc-gui): use base from props baseId instead of current base in quickImport * fix(nc-gui): import issue * fix(nc-gui): external data sources are not visible in data source tab if selected base is not active base * revet(nc-gui): base audit related changes
14 lines
309 B
Vue
14 lines
309 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
sourceId: string
|
|
showAllColumns?: boolean
|
|
baseId?: string
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-full h-full !p-0">
|
|
<ErdView :base-id="props.baseId" :source-id="props.sourceId" :show-all-columns="props.showAllColumns" />
|
|
</div>
|
|
</template>
|