mirror of
https://github.com/transmission/transmission.git
synced 2026-04-20 00:40:03 +01:00
chore: backport recent WebUI fixes (#6563)
* fix: update WebUI build instructions to use `dataurl` loader for images (#6430) (cherry picked from commit9932f567fb) * fix: always use location of selected torrents in WebUI set location dialogue (#6334) (cherry picked from commit71de532e0c)
This commit is contained in:
@@ -3,8 +3,6 @@
|
||||
or any future license endorsed by Mnemosyne LLC.
|
||||
License text can be found in the licenses/ folder. */
|
||||
|
||||
let default_path = '';
|
||||
|
||||
import { createDialogContainer } from './utils.js';
|
||||
|
||||
export class MoveDialog extends EventTarget {
|
||||
@@ -25,13 +23,11 @@ export class MoveDialog extends EventTarget {
|
||||
return;
|
||||
}
|
||||
|
||||
default_path = default_path || torrents[0].getDownloadDir();
|
||||
|
||||
this.torrents = torrents;
|
||||
this.elements = MoveDialog._create();
|
||||
this.elements.confirm.addEventListener('click', () => this._onConfirm());
|
||||
this.elements.dismiss.addEventListener('click', () => this._onDismiss());
|
||||
this.elements.entry.value = default_path;
|
||||
this.elements.entry.value = torrents[0].getDownloadDir();
|
||||
document.body.append(this.elements.root);
|
||||
|
||||
this.elements.entry.focus();
|
||||
@@ -55,7 +51,6 @@ export class MoveDialog extends EventTarget {
|
||||
_onConfirm() {
|
||||
const ids = this.torrents.map((tor) => tor.getId());
|
||||
const path = this.elements.entry.value.trim();
|
||||
default_path = path;
|
||||
this.remote.moveTorrents(ids, path);
|
||||
this.close();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user