Fix display col series

This commit is contained in:
Meutel 2016-12-31 10:39:32 +01:00
parent 2d081b9413
commit a11f314224

View File

@ -32,8 +32,10 @@
</template>
</td>
<td>
<span class="glyphicon glyphicon-list"></span>{{ book.series ? book.series.name : '' }}
<span class="badge">{{ book.series ? book.series.idx : '' }}</span>
<template v-if="book.series">
<span class="glyphicon glyphicon-list"></span>{{ book.series ? book.series.name : '' }}
<span class="badge">{{ book.series ? book.series.idx : '' }}</span>
</template>
</td>
</tr>
</table>