- 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:
Arno Kaimbacher 2020-04-09 17:48:55 +02:00
parent ea6288fd0f
commit 0249bcc2c5
27 changed files with 172 additions and 72 deletions

View file

@ -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: {