add firstNight/otherNight leaves to fabled

This commit is contained in:
Steffen 2020-11-22 21:39:46 +01:00
parent 874e0ae1cb
commit 139b4fd202
1 changed files with 8 additions and 2 deletions

View File

@ -8,8 +8,14 @@
require('../assets/icons/' + role.id + '.png')})`
}"
></span>
<span class="leaf-left" v-if="role.firstNight"></span>
<span class="leaf-right" v-if="role.otherNight"></span>
<span
class="leaf-left"
v-if="role.firstNight || role.firstNightReminder"
></span>
<span
class="leaf-right"
v-if="role.otherNight || role.otherNightReminder"
></span>
<span
v-if="role.reminders && role.reminders.length"
v-bind:class="['leaf-top' + role.reminders.length]"