Skip to content

Commit

Permalink
#14 - Add definition table to group detail view
Browse files Browse the repository at this point in the history
- Add definition table to group and record detail view
  • Loading branch information
ammarbarakat committed Oct 18, 2021
1 parent 48de139 commit bf84475
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions components/views/groups-records-detail-view.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,14 @@
</v-toolbar>
</v-card>
<meta-data :data="element.identification" />
<v-list>
<v-subheader>{{ $t('global.definitions') }}</v-subheader>
<v-list-item>
<v-list-item-content>
<definition-table :definitions="element.definitions" />
</v-list-item-content>
</v-list-item>
</v-list>
<v-list v-if="element.members.length > 0">
<v-subheader>{{ $t('global.members') }}</v-subheader>
<v-list-item>
Expand All @@ -48,12 +56,14 @@
<script>
import Common from '~/assets/js/common'
import Ajax from '~/config/ajax'
import DefinitionTable from '~/components/tables/definition-table'
import MetaData from '~/components/item/meta-data'
import MembersTable from '~/components/tables/members-table'
import GroupRecordDialog from '~/components/dialogs/group-record-dialog'
export default {
components: {
MetaData,
DefinitionTable,
MembersTable,
GroupRecordDialog
},
Expand Down

0 comments on commit bf84475

Please sign in to comment.