Skip to content

Commit

Permalink
add TableDescription To Context
Browse files Browse the repository at this point in the history
Signed-off-by: grnd-alt <salimbelakkaf@outlook.de>
  • Loading branch information
grnd-alt committed Apr 2, 2024
1 parent 594c468 commit 69a54c4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/modules/main/sections/TableWrapper.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<template>
<div>
<ElementTitle :active-element="table" :view-setting.sync="localViewSetting" />
<TableDescription :active-element="table" />
<DataTable :show-options="false" :table="table" :columns="columns" :rows="rows" :view-setting.sync="localViewSetting"
@create-column="$emit('create-column')"
@import="$emit('import')"
Expand All @@ -12,6 +13,7 @@
</template>

<script>
import TableDescription from './TableDescription.vue'
import ElementTitle from './ElementTitle.vue'
import DataTable from './DataTable.vue'
import { mapState } from 'vuex'
Expand All @@ -22,6 +24,7 @@ export default {
components: {
ElementTitle,
DataTable,
TableDescription,
},
props: {
Expand Down

0 comments on commit 69a54c4

Please sign in to comment.