Minor fixes for new version of the library
This commit is contained in:
parent
5f2488846b
commit
6c72c1fb2f
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -115,7 +115,10 @@ export default {
|
||||
this.addToQueue(initQueueList[item])
|
||||
})
|
||||
|
||||
if (restored) toast(this.$t('toasts.queueRestored'), 'done', true, 'restoring_queue')
|
||||
if (restored){
|
||||
toast(this.$t('toasts.queueRestored'), 'done', true, 'restoring_queue')
|
||||
socket.emit('queueRestored')
|
||||
}
|
||||
},
|
||||
addToQueue(queueItem, current = false) {
|
||||
this.queueList[queueItem.uuid] = queueItem
|
||||
@ -227,7 +230,6 @@ export default {
|
||||
}
|
||||
|
||||
if (conversion) {
|
||||
console.log(100-conversion)
|
||||
$('#bar_' + uuid).css('width', (100-conversion) + '%')
|
||||
}
|
||||
}
|
||||
|
@ -19,7 +19,9 @@
|
||||
}
|
||||
|
||||
.converting {
|
||||
background-color: var(--secondary-color)
|
||||
background-color: var(--secondary-color);
|
||||
-webkit-transition: none !important;
|
||||
transition: none !important;
|
||||
}
|
||||
|
||||
.indeterminate {
|
||||
|
Loading…
Reference in New Issue
Block a user