diff --git a/src/components/PropertiesWindowApp.tsx b/src/components/PropertiesWindowApp.tsx index f0968c0..1d9b599 100644 --- a/src/components/PropertiesWindowApp.tsx +++ b/src/components/PropertiesWindowApp.tsx @@ -1368,18 +1368,15 @@ export const PropertiesWindowApp = () => { } {activeTab === 'transfer' &&
-
- $.properties.speedCap)} - controlId="properties-transfer-speed-cap" - hint={t($ => $.properties.speedLimitHint)} - meta={downloadLimit.trim() ? t($ => $.properties.customPerDownload) : t($ => $.properties.usingDefault)} - format={t($ => $.properties.inputFormat, { format: t($ => $.properties.inputFormatSpeedLimit) })} - > - { setDownloadLimit(event.target.value); setDraftTab('transfer'); }} placeholder={t($ => $.properties.inputExampleSpeedLimit)} disabled={!editingEnabled} /> - -
{snapshot.isMedia === true ? t($ => $.properties.configuredConcurrency) : t($ => $.properties.connections)}

{snapshot.isMedia === true ? snapshot.connections ?? '—' : `${snapshot.activeConnections ?? '—'} / ${snapshot.requestedConnections ?? snapshot.connections ?? '—'}`}

-
+ $.properties.speedCap)} + controlId="properties-transfer-speed-cap" + hint={t($ => $.properties.speedLimitHint)} + meta={downloadLimit.trim() ? t($ => $.properties.customPerDownload) : t($ => $.properties.usingDefault)} + format={t($ => $.properties.inputFormat, { format: t($ => $.properties.inputFormatSpeedLimit) })} + > + { setDownloadLimit(event.target.value); setDraftTab('transfer'); }} placeholder={t($ => $.properties.inputExampleSpeedLimit)} disabled={!editingEnabled} /> +

{t($ => $.properties.transferSettings)}

}