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 = ` -