mirror of https://github.com/nocodb/nocodb
Muhammed Mustafa
1 year ago
committed by
GitHub
5 changed files with 7 additions and 7 deletions
@ -1,11 +1,12 @@ |
|||||||
<script setup lang="ts"> |
<script setup lang="ts"> |
||||||
const props = defineProps<{ |
const props = defineProps<{ |
||||||
sourceId: string |
sourceId: string |
||||||
|
showAllColumns?: boolean |
||||||
}>() |
}>() |
||||||
</script> |
</script> |
||||||
|
|
||||||
<template> |
<template> |
||||||
<div class="w-full h-full !p-0"> |
<div class="w-full h-full !p-0"> |
||||||
<ErdView :source-id="props.sourceId" /> |
<ErdView :source-id="props.sourceId" :show-all-columns="props.showAllColumns" /> |
||||||
</div> |
</div> |
||||||
</template> |
</template> |
||||||
|
Loading…
Reference in new issue