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() { function updateConfigDisplay() {
const configInfo = document.getElementById('config-info'); const configInfo = document.getElementById('config-info');
configInfo.innerHTML = ` if (configInfo) {
<strong>Configuration actuelle:</strong><br> configInfo.innerHTML = `
URL de base: ${config.baseUrl}<br> <strong>Configuration actuelle:</strong><br>
Chemin actuel: /${config.currentPath} URL de base: ${config.baseUrl}<br>
`; Chemin actuel: /${config.currentPath}
`;
}
} }
function showDevForm() { function showDevForm() {