Fixed slplayer manual sync button tooltip

This commit is contained in:
Travis Shivers 2020-07-01 20:38:38 -05:00
parent a2ef76cedd
commit 0987e6e55a
1 changed files with 14 additions and 9 deletions

View File

@ -76,15 +76,20 @@
bottom
color="accent"
>
<v-icon
color="white"
class="clickable"
:disabled="IS_MANUAL_SYNC_QUEUED"
@click="SET_IS_MANUAL_SYNC_QUEUED(true)"
>
compare_arrows
</v-icon>
Manual Sync
<template v-slot:activator="{ on, attrs }">
<v-icon
color="white"
class="clickable"
:disabled="IS_MANUAL_SYNC_QUEUED"
v-bind="attrs"
@click="SET_IS_MANUAL_SYNC_QUEUED(true)"
v-on="on"
>
compare_arrows
</v-icon>
</template>
<span>Manual Sync</span>
</v-tooltip>
<v-icon