mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-28 13:58:40 +02:00
Fix buggy loading opacity
This commit is contained in:
parent
6ea2ef0845
commit
64b2c34031
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ export default {
|
||||||
computed: {
|
computed: {
|
||||||
classList() {
|
classList() {
|
||||||
var list = []
|
var list = []
|
||||||
list.push(this.loading ? 'text-white/100' : 'text-white')
|
list.push(this.loading ? 'text-white/0' : 'text-white')
|
||||||
list.push(`${this.color}`)
|
list.push(`${this.color}`)
|
||||||
if (this.small) {
|
if (this.small) {
|
||||||
list.push('text-sm')
|
list.push('text-sm')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue