Exclude from the list of display children on EntityModal those with no name or that are configuration values.

This commit is contained in:
Fabio Manganiello 2023-03-22 16:38:38 +01:00
parent e10bec88c0
commit 239dd17f23
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 2 additions and 1 deletions

View File

@ -133,7 +133,8 @@
</div>
<div class="children-container-info" v-if="!childrenCollapsed">
<div class="table-row" v-for="child in children" :key="child.id">
<div class="table-row" :class="{hidden: !child.name?.length || child.is_configuration}"
v-for="child in children" :key="child.id">
<div class="value">
<a class="url" @click="$emit('entity-update', child.id)"
v-text="child.name"