Skip to content

Commit

Permalink
use ElementTitle instead of ElementDescription
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 Mar 28, 2024
1 parent a64f2da commit f890601
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modules/main/sections/TableWrapper.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<ElementDescription :active-element="table" :view-setting.sync="localViewSetting" />
<ElementTitle :active-element="table" :view-setting.sync="localViewSetting" />
<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,15 +12,15 @@
</template>

<script>
import ElementDescription from './ElementDescription.vue'
import ElementTitle from './ElementTitle.vue'
import DataTable from './DataTable.vue'
import { mapState } from 'vuex'
import { emit } from '@nextcloud/event-bus'
export default {
components: {
ElementDescription,
ElementTitle,
DataTable,
},
Expand Down

0 comments on commit f890601

Please sign in to comment.