1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

refactor(core): better way to obtain schema

This commit is contained in:
2021-07-13 09:09:25 +02:00
parent a87079cd17
commit 7488bc7a17
7 changed files with 16 additions and 23 deletions

View File

@ -147,11 +147,7 @@
:connection="connection"
:scheduler="workspace.breadcrumbs.scheduler"
/> -->
<div
v-for="tab of workspace.tabs"
:key="tab.uid"
class="column col-12"
>
<template v-for="tab of workspace.tabs">
<WorkspaceQueryTab
v-if="tab.type==='query'"
:key="tab.uid"
@ -161,13 +157,13 @@
/>
<WorkspaceTableTab
v-else-if="tab.type==='temp-data'"
v-show="selectedTab === tab.uid"
:is-selected="selectedTab === tab.uid"
:key="tab.uid"
:connection="connection"
:is-selected="selectedTab === tab.uid"
:table="tab.table"
:schema="tab.schema"
/>
</div>
</template>
</div>
<WorkspaceEditConnectionPanel v-else :connection="connection" />
<ModalProcessesList