fix: innerhtml
All checks were successful
Deploy MinIO Explorer / deploy (push) Successful in 34s

This commit is contained in:
2025-09-05 11:58:28 +02:00
parent 8df4d6448d
commit 0512357fd0

View File

@@ -101,11 +101,13 @@ function parseMinioURL(url) {
function updateConfigDisplay() {
const configInfo = document.getElementById('config-info');
configInfo.innerHTML = `
<strong>Configuration actuelle:</strong><br>
URL de base: ${config.baseUrl}<br>
Chemin actuel: /${config.currentPath}
`;
if (configInfo) {
configInfo.innerHTML = `
<strong>Configuration actuelle:</strong><br>
URL de base: ${config.baseUrl}<br>
Chemin actuel: /${config.currentPath}
`;
}
}
function showDevForm() {