Icons in the history entries have tooltips now
This commit is contained in:
parent
0d55dc2b38
commit
719928f5e5
1 changed files with 2 additions and 2 deletions
|
|
@ -42,12 +42,12 @@
|
|||
</li>
|
||||
<div class="show-on-small-screen">
|
||||
<li>
|
||||
<button class="icon" :id="'delete-button#'+index" @click="deleteHistory(entry)" aria-label="Delete">
|
||||
<button v-tooltip="'Delete'" class="icon" :id="'delete-button#'+index" @click="deleteHistory(entry)" aria-label="Delete">
|
||||
<i class="material-icons">delete</i>
|
||||
</button>
|
||||
</li>
|
||||
<li>
|
||||
<button class="icon" :id="'use-button#'+index" @click="useHistory(entry)" aria-label="Edit">
|
||||
<button v-tooltip="'Edit'" class="icon" :id="'use-button#'+index" @click="useHistory(entry)" aria-label="Edit">
|
||||
<i class="material-icons">edit</i>
|
||||
</button>
|
||||
</li>
|
||||
|
|
|
|||
Loading…
Reference in a new issue