Merge pull request #673 from jsuelwald/patch-1

Change time display on job
This commit is contained in:
cmdr2 2022-12-19 11:48:38 +05:30 committed by GitHub
commit c3126f7b4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -623,19 +623,18 @@ function onTaskCompleted(task, reqBody, instance, outputContainer, stepUpdate) {
task['stopTask'].innerHTML = '<i class="fa-solid fa-trash-can"></i> Remove' task['stopTask'].innerHTML = '<i class="fa-solid fa-trash-can"></i> Remove'
task['taskStatusLabel'].style.display = 'none' task['taskStatusLabel'].style.display = 'none'
let time = Date.now() - task.startTime let time = millisecondsToStr( Date.now() - task.startTime )
time /= 1000
if (task.batchesDone == task.batchCount) { if (task.batchesDone == task.batchCount) {
if (!task.outputMsg.innerText.toLowerCase().includes('error')) { if (!task.outputMsg.innerText.toLowerCase().includes('error')) {
task.outputMsg.innerText = `Processed ${task.numOutputsTotal} images in ${time} seconds` task.outputMsg.innerText = `Processed ${task.numOutputsTotal} images in ${time}`
} }
task.progressBar.style.height = "0px" task.progressBar.style.height = "0px"
task.progressBar.style.border = "0px solid var(--background-color3)" task.progressBar.style.border = "0px solid var(--background-color3)"
task.progressBar.classList.remove("active") task.progressBar.classList.remove("active")
setStatus('request', 'done', 'success') setStatus('request', 'done', 'success')
} else { } else {
task.outputMsg.innerText += `Task ended after ${time} seconds` task.outputMsg.innerText += `Task ended after ${time}`
} }
if (randomSeedField.checked) { if (randomSeedField.checked) {