mirror of
https://gitlab.com/RemixDev/deemix-webui.git
synced 2025-01-01 12:26:01 +00:00
bugfix: download items not showing correctly
This commit is contained in:
parent
9e0a42672d
commit
7997950fa8
|
@ -28,8 +28,9 @@
|
|||
}
|
||||
|
||||
#download_list {
|
||||
padding: 0px 8px;
|
||||
width: 100%;
|
||||
height: calc(100% - 32px);
|
||||
padding: 0px 8px 0px 28px;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
import { socket } from './socket.js'
|
||||
import { toast } from './toasts.js'
|
||||
import Utils from './utils.js'
|
||||
|
||||
/* ===== Locals ===== */
|
||||
const tabMinWidth = 250
|
||||
const tabMaxWidth = 500
|
||||
|
||||
let cachedTabWidth = parseInt(localStorage.getItem('downloadTabWidth')) || 300
|
||||
let queueList = {}
|
||||
let queue = []
|
||||
|
|
Loading…
Reference in a new issue