Skip to content

Commit

Permalink
#497 hide table tab
Browse files Browse the repository at this point in the history
  • Loading branch information
wildone committed May 12, 2023
1 parent ed954f3 commit bc1fe06
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/Project/ContentTab/Tabs/Output.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,27 @@
}"
@click="handleView('viz')"
/>
<Button
<!-- <Button
:label="$t(`components.output.table`)"
class="p-button-raised"
:class="{
'p-button-text p-button-plain': activeView !== 'table',
}"
@click="handleView('table')"
/>
/> -->
</div>
<div class="config-container-content">
<!-- <graph-view v-show="activeView === 'viz'" /> -->
<object v-show="activeView === 'viz' && path" :data="path"></object>
<table-view v-show="activeView === 'table'" />
<!-- <table-view v-show="activeView === 'table'" /> -->
</div>
</div>
</template>

<script>
// import axios from "axios"
import Button from "primevue/button"
import TableView from "../Table/TableView.vue"
// import TableView from "../Table/TableView.vue"
import Projects from "@/store/Modules/Projects"
import { getModule } from "vuex-module-decorators"
const projectsModule = getModule(Projects)
Expand All @@ -39,7 +39,7 @@
name: "Output",
components: {
Button,
TableView,
// TableView,
// GraphView,
},
props: {
Expand Down

0 comments on commit bc1fe06

Please sign in to comment.