From e42c97a0dc034e32b215bc3a4244ba998a231e04 Mon Sep 17 00:00:00 2001 From: Jarian Cottingham Date: Thu, 19 Feb 2026 10:13:48 -0600 Subject: [PATCH] Fix warning sign persistence issue - warning sign now displayed in separate column and doesn't affect actual file names --- PROJECT_OVERVIEW.md | 1 + index.html | 6 ------ renderer.js | 2 +- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/PROJECT_OVERVIEW.md b/PROJECT_OVERVIEW.md index 34308cf..258bac6 100644 --- a/PROJECT_OVERVIEW.md +++ b/PROJECT_OVERVIEW.md @@ -45,6 +45,7 @@ MovieMapper is a desktop application designed for organizing and managing movie - **File Untagging**: Click on already tagged files to remove the tag - **File Organization**: Move files to "extras" folder for better organization - **Problematic File Handling**: Identifies and flags files that cause issues during metadata extraction +- **Warning Sign Display**: Files with issues are indicated with a warning sign (⚠️) in the UI but this does not affect the actual file name ### 4. Technical Features - **Electron Framework**: Cross-platform desktop application diff --git a/index.html b/index.html index 5e338a4..e87aa6c 100644 --- a/index.html +++ b/index.html @@ -134,12 +134,6 @@ min-width: 80px; /* Ensure consistent column width */ } - .problematic-label { - color: #dc3545; - font-weight: bold; - margin-right: 5px; - } - .file-item:last-child { border-bottom: none; } diff --git a/renderer.js b/renderer.js index 11121ae..d66036a 100644 --- a/renderer.js +++ b/renderer.js @@ -82,7 +82,7 @@ function displayFiles(files) { const problemLabel = file.isProblematic ? '⚠️ ' : ''; fileItem.innerHTML = ` -
${problemLabel}${file.name}
+
${file.name}
${duration}
${quality}
${fps}