Fix warning sign persistence issue - warning sign now displayed in separate column and doesn't affect actual file names
This commit is contained in:
parent
7d543f8893
commit
e42c97a0dc
@ -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
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -82,7 +82,7 @@ function displayFiles(files) {
|
||||
const problemLabel = file.isProblematic ? '<span class="problematic-label">⚠️</span> ' : '';
|
||||
|
||||
fileItem.innerHTML = `
|
||||
<div class="file-name" data-file-path="${file.path}">${problemLabel}${file.name}</div>
|
||||
<div class="file-name" data-file-path="${file.path}">${file.name}</div>
|
||||
<div class="file-duration">${duration}</div>
|
||||
<div class="file-quality">${quality}</div>
|
||||
<div class="file-fps">${fps}</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user