style: auto-fix linting issues
This commit is contained in:
parent
1a4c75f833
commit
ba859ab697
1 changed files with 4 additions and 2 deletions
6
js/ui.js
6
js/ui.js
|
|
@ -306,8 +306,10 @@ export class UIRenderer {
|
|||
'track-item',
|
||||
isCurrentTrack ? 'playing' : '',
|
||||
isUnavailable ? 'unavailable' : '',
|
||||
isBlocked ? 'blocked' : ''
|
||||
].filter(Boolean).join(' ');
|
||||
isBlocked ? 'blocked' : '',
|
||||
]
|
||||
.filter(Boolean)
|
||||
.join(' ');
|
||||
|
||||
return `
|
||||
<div class="${classList}"
|
||||
|
|
|
|||
Loading…
Reference in a new issue