forked from platypush/platypush
Exclude from the list of display children on EntityModal those with no name or that are configuration values.
This commit is contained in:
parent
e10bec88c0
commit
239dd17f23
1 changed files with 2 additions and 1 deletions
|
@ -133,7 +133,8 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="children-container-info" v-if="!childrenCollapsed">
|
<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">
|
<div class="value">
|
||||||
<a class="url" @click="$emit('entity-update', child.id)"
|
<a class="url" @click="$emit('entity-update', child.id)"
|
||||||
v-text="child.name"
|
v-text="child.name"
|
||||||
|
|
Loading…
Reference in a new issue