mirror of
https://codeberg.org/armin/noiz.git
synced 2026-09-01 05:50:52 +02:00
Use full file path name in tag editor filename field
This commit is contained in:
parent
59b771cd2d
commit
26a45a73ef
1 changed files with 1 additions and 1 deletions
|
|
@ -1324,7 +1324,7 @@ function openTagEditor() {
|
||||||
if (idx < 0) { showStatus('No track selected.', 'error'); return; }
|
if (idx < 0) { showStatus('No track selected.', 'error'); return; }
|
||||||
const t = tracks[idx];
|
const t = tracks[idx];
|
||||||
tagEditorOverlay.dataset.idx = idx;
|
tagEditorOverlay.dataset.idx = idx;
|
||||||
tagFilename.value = t.filename || '';
|
tagFilename.value = t.path || '';
|
||||||
tagName.value = t.name || '';
|
tagName.value = t.name || '';
|
||||||
tagArtist.value = t.artist || '';
|
tagArtist.value = t.artist || '';
|
||||||
tagAlbum.value = t.album || '';
|
tagAlbum.value = t.album || '';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue