Add conditional rendering to description

* Modify Details component
* Modify MonitorList component
This commit is contained in:
Juan Cruz Vincenti
2021-11-25 18:11:13 -03:00
parent 934d633d4d
commit fbf2df9e7a
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@
<div class="info">
<Uptime :monitor="item" type="24" :pill="true" />
{{ item.name }}
<span :title="item.description">
<span v-if="item.description" :title="item.description">
<font-awesome-icon icon="info-circle" />
</span>
</div>