mirror of https://github.com/Kylart/KawAnime.git
Fix action buttons display for torrent client
This commit is contained in:
parent
08a6c4ea0d
commit
675ae8e71e
|
@ -9,11 +9,12 @@
|
|||
)
|
||||
|
||||
template(v-slot:item.actions='{ item }')
|
||||
v-btn(icon, @click="actOnTorrent(item.isPaused ? 'resume' : 'pause', item)")
|
||||
v-icon {{ item.isPaused ? 'play_arrow' : 'stop' }}
|
||||
td.d-flex.align-center
|
||||
v-btn(icon, @click="actOnTorrent(item.isPaused ? 'resume' : 'pause', item)")
|
||||
v-icon {{ item.isPaused ? 'play_arrow' : 'stop' }}
|
||||
|
||||
v-btn(icon, @click="actOnTorrent('destroy', item)")
|
||||
v-icon(color='red') delete
|
||||
v-btn(icon, @click="actOnTorrent('destroy', item)")
|
||||
v-icon(color='red') delete
|
||||
|
||||
template(v-slot:item.name='{ item }')
|
||||
td.ellipsis {{ item.name }}
|
||||
|
|
Loading…
Reference in New Issue