diff --git a/frontend/src/components/DownloadTable.vue b/frontend/src/components/DownloadTable.vue index cf7ed2c..1040fd3 100644 --- a/frontend/src/components/DownloadTable.vue +++ b/frontend/src/components/DownloadTable.vue @@ -192,13 +192,20 @@ async function clearJob(jobId: string): Promise { - - + + {{ displayName(job) }} - + @@ -298,6 +305,7 @@ async function clearJob(jobId: string): Promise { width: 100%; border-collapse: collapse; font-size: var(--font-size-sm); + table-layout: fixed; } .download-table thead { @@ -356,6 +364,14 @@ async function clearJob(jobId: string): Promise { align-items: center; gap: var(--space-sm); overflow: hidden; + min-width: 0; + color: inherit; + text-decoration: none; +} + +a.name-with-icon:hover .name-text { + text-decoration: underline; + color: var(--color-accent-primary, #00a8ff); } .media-icon { @@ -368,6 +384,7 @@ async function clearJob(jobId: string): Promise { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; + min-width: 0; } .col-status { width: 100px; } diff --git a/frontend/src/components/UrlInput.vue b/frontend/src/components/UrlInput.vue index 1ef6894..023196f 100644 --- a/frontend/src/components/UrlInput.vue +++ b/frontend/src/components/UrlInput.vue @@ -195,6 +195,7 @@ function handlePaste(): void { // Check if URL yielded anything useful if (urlInfo.value?.type === 'unknown') { analyzeError.value = 'No downloadable media found at this URL.' + urlInfo.value = null } else if (!urlInfo.value && !extractError.value) { analyzeError.value = 'Could not reach this URL. Check the address and try again.' }