diff --git a/scripts/install/debug_install.sh b/scripts/install/debug_install.sh index 3289cc14..7f094217 100755 --- a/scripts/install/debug_install.sh +++ b/scripts/install/debug_install.sh @@ -68,13 +68,17 @@ fi echo "" echo "8. Latest installation log:" -LOG_FILE=$(ls -t /home/ledpi/LEDMatrix/logs/first_time_install_*.log 2>/dev/null | head -1) +# Determine project root directory (parent of scripts/install/) +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +PROJECT_ROOT_DIR="$(cd "$SCRIPT_DIR/../.." && pwd)" +LOG_DIR="$PROJECT_ROOT_DIR/logs" +LOG_FILE=$(ls -t "$LOG_DIR"/first_time_install_*.log 2>/dev/null | head -1) if [ -n "$LOG_FILE" ]; then echo " Found: $LOG_FILE" echo " Last 30 lines:" tail -30 "$LOG_FILE" | sed 's/^/ /' else - echo " No log files found in /home/ledpi/LEDMatrix/logs/" + echo " No log files found in $LOG_DIR/" fi echo "" diff --git a/web_interface/static/v3/plugins_manager.js b/web_interface/static/v3/plugins_manager.js index 2f13ac25..c75b75ad 100644 --- a/web_interface/static/v3/plugins_manager.js +++ b/web_interface/static/v3/plugins_manager.js @@ -2506,18 +2506,20 @@ function renderArrayObjectItem(fieldId, fullKey, itemProperties, itemValue, inde const logoValue = propValue || {}; // Display existing logo if present, but disable upload functionality + // Store file metadata in data-file-data attribute for serialization if (logoValue.path) { + const fileDataJson = JSON.stringify(logoValue).replace(/'/g, "'").replace(/"/g, """); html += ` -
+
- Logo + Logo File upload not yet available for array items
`; } else { html += ` -
+
`; diff --git a/web_interface/templates/v3/base.html b/web_interface/templates/v3/base.html index ce3fee56..b427011b 100644 --- a/web_interface/templates/v3/base.html +++ b/web_interface/templates/v3/base.html @@ -4822,7 +4822,7 @@