fix: ban champion tooltip when the player doesn't ban anyone

This commit is contained in:
Valentin Kaelin 2019-12-02 18:39:10 +01:00
parent 12cc116f0d
commit 83e616d974

View file

@ -24,7 +24,7 @@
</template>
<template v-slot:default>
<div class="px-2 text-white text-center text-xs leading-tight select-none">
<div>{{ ban.champion.name }}</div>
<div>{{ ban.champion.id ? ban.champion.name : 'No ban' }}</div>
</div>
</template>
</Dropdown>