From e097d19f0737f7a4f940c656c970c61202ab479e Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Fri, 5 Sep 2025 12:05:31 +0200 Subject: [PATCH] fix: nothing is shown --- script.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/script.js b/script.js index 071e4b3..e12b2d5 100644 --- a/script.js +++ b/script.js @@ -71,6 +71,11 @@ function autoConfigureFromURL() { updateConfigDisplay(); console.log('Configuration automatique:', config); + + // Charger automatiquement le contenu si on a une config valide + if (config.baseUrl) { + loadBucketContents(config.currentPath, false); + } } function handleUrlFormSubmit(event) {