ci: auto build & obfuscate [2026-04-23 00:35:57] (Jenkins #17)

This commit is contained in:
Jenkins CI
2026-04-23 00:35:57 +08:00
parent 8d590073f4
commit 544937bb91
23 changed files with 160 additions and 84 deletions

View File

@@ -137,7 +137,12 @@ export function progressTracker(operationId, maxAttempts) {
container.style.backgroundColor = 'rgba(80,0,0,0.9)';
progress.style.display = 'none';
info.style.whiteSpace = 'pre-wrap';
info.innerHTML = `<span style="color:#ff9494">错误详情:</span>\n${errorMsg}`;
info.innerHTML = '';
const label = document.createElement('span');
label.style.color = '#ff9494';
label.textContent = '错误详情:';
info.appendChild(label);
info.appendChild(document.createTextNode('\n' + String(errorMsg ?? '')));
}
};
}