- favicons for all platforms
- deleting message box in contact view - optional property for showing heading in PersonTable.vue - showing reference type and additional abstratcs in detail view of dataset - reduced relationTypes for references
This commit is contained in:
parent
ea6288fd0f
commit
0249bcc2c5
27 changed files with 172 additions and 72 deletions
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<div>
|
||||
<h3 v-if="heading && personlist.length">{{ heading }}</h3>
|
||||
<h3 v-if="heading && personlist.length && showHeading == true">{{ heading }}</h3>
|
||||
<table class="pure-table pure-table-horizontal" v-if="personlist.length">
|
||||
<thead class="thead-dark">
|
||||
<tr>
|
||||
|
@ -133,6 +133,8 @@ export default class PersonTable extends Vue {
|
|||
heading;
|
||||
@Prop({ required: true, type: Array })
|
||||
messages;
|
||||
@Prop({ default: true, type: Boolean })
|
||||
showHeading;
|
||||
|
||||
// props: {
|
||||
// personlist: {
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue