fix(webui): field should not display if empty

This commit is contained in:
Gauthier Roebroeck 2020-08-24 16:49:30 +08:00
parent 13479302d5
commit 968e297af0

View file

@ -82,7 +82,7 @@
</v-col>
</v-row>
<v-row class="mt-3">
<v-row class="mt-3" v-if="series.metadata.summary">
<v-col>
<div class="text-body-1"
style="white-space: pre-wrap"
@ -91,9 +91,9 @@
</v-col>
</v-row>
<v-row>
<v-row v-if="series.metadata.publisher">
<v-col cols="6" sm="4" md="2" class="text-body-2 py-1">PUBLISHER</v-col>
<v-col class="text-body-2 text-capitalize py-1" v-if="series.metadata.publisher">
<v-col class="text-body-2 text-capitalize py-1">
{{ series.metadata.publisher }}
</v-col>
</v-row>