Avoid disabling the force reset row buttons on videos that are still transcoding

pull/337/head
ElementalAlchemist 2 years ago committed by Mike Lang
parent d2f95bea20
commit d2bcff3ffd

@ -550,16 +550,24 @@ async function initializeVideoInfo() {
}
} else {
for (const input of document.getElementsByTagName("input")) {
input.disabled = true;
if (!isNonVideoInput(input)) {
input.disabled = true;
}
}
for (const textArea of document.getElementsByTagName("textarea")) {
textArea.disabled = true;
if (!isNonVideoInput(textArea)) {
textArea.disabled = true;
}
}
for (const button of document.getElementsByTagName("button")) {
button.disabled = true;
if (!isNonVideoInput(button)) {
button.disabled = true;
}
}
for (const selectBox of document.getElementsByTagName("select")) {
selectBox.disabled = true;
if (!isNonVideoInput(selectBox)) {
selectBox.disabled = true;
}
}
}
}
@ -1777,3 +1785,7 @@ function canEditVideo() {
function canEditMetadata() {
return canEditVideo() || videoInfo.state === "DONE" || videoInfo.state === "MODIFIED";
}
function isNonVideoInput(element) {
return element.id.startsWith("data-correction-force-reset");
}

Loading…
Cancel
Save