bugfix: download items not showing correctly

This commit is contained in:
Roberto Tonino 2020-04-26 21:32:49 +02:00
parent 9e0a42672d
commit 7997950fa8
2 changed files with 3 additions and 2 deletions

View File

@ -28,8 +28,9 @@
} }
#download_list { #download_list {
padding: 0px 8px; width: 100%;
height: calc(100% - 32px); height: calc(100% - 32px);
padding: 0px 8px 0px 28px;
overflow-y: scroll; overflow-y: scroll;
} }

View File

@ -1,10 +1,10 @@
import { socket } from './socket.js' import { socket } from './socket.js'
import { toast } from './toasts.js' import { toast } from './toasts.js'
import Utils from './utils.js'
/* ===== Locals ===== */ /* ===== Locals ===== */
const tabMinWidth = 250 const tabMinWidth = 250
const tabMaxWidth = 500 const tabMaxWidth = 500
let cachedTabWidth = parseInt(localStorage.getItem('downloadTabWidth')) || 300 let cachedTabWidth = parseInt(localStorage.getItem('downloadTabWidth')) || 300
let queueList = {} let queueList = {}
let queue = [] let queue = []