upload: moved upload-status before the preparation-queue

Massimo Melina committed Jul 18, 2025 at 20:05 UTC 601455646dc6c1a2cef3021f4bfdc2270d1e1ca9
1 file changed +1 -1
frontend/src/upload.ts
+1 -1
@@ -85,6 +85,7 @@ export function showUpload() {
85 }),
86 ),
87 !isMobile && h(Flex, { gap: 4 }, hIcon('info'), t('upload_dd_hint', "You can upload files doing drag&drop on the files list")),
88 + h(UploadStatus, { margin: '.5em 0' }),
89 adding.length > 0 && h(Flex, { center: true, flexWrap: 'wrap' },
90 h('button', {
91 className: 'upload-send',
@@ -122,7 +123,6 @@ export function showUpload() {
123 },
124 },
125 }),
125 - h(UploadStatus, { margin: '.5em 0' }),
126 qs.length > 0 && h('div', {},
127 h(Flex, { center: true, borderTop: '1px dashed', padding: '.5em' },
128 [etaStr, formatSpeed(speed), queueStr].filter(Boolean).join(', '),