1
0
Dominik Pschenitschni
2021-08-19 21:10:29 +02:00
parent 3c89147ee2
commit 2b20f328cb
5 changed files with 13 additions and 13 deletions

View File

@ -11,7 +11,7 @@
>
<div v-if="item.title" class="notification-title">{{ item.title }}</div>
<div class="notification-content">
<template v-for="(t, k) in item.text">{{ t }}<br :key="k"/></template>
<template v-for="(t, k) in item.text" :key="k">{{ t }}<br /></template>
</div>
<div
class="buttons is-right"

View File

@ -1,8 +1,8 @@
<template>
<span class="shortcuts">
<template v-for="(k, i) in keys">
<kbd :key="i">{{ k }}</kbd>
<span v-if="i < keys.length - 1" :key="`plus${i}`">+</span>
<template v-for="(k, i) in keys" :key="i">
<kbd>{{ k }}</kbd>
<span v-if="i < keys.length - 1">+</span>
</template>
</span>
</template>