Skip to content

Commit

Permalink
fix(webui): field should not display if empty
Browse files Browse the repository at this point in the history
  • Loading branch information
gotson committed Aug 24, 2020
1 parent 1347930 commit 968e297
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions komga-webui/src/views/BrowseSeries.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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>
Expand Down

0 comments on commit 968e297

Please sign in to comment.