feat(player): add file path display below video title
- Display the video file path in smaller, gray text below the title - Apply drop shadow and truncate long paths for better readability - Ensure consistent UI spacing with margin top on the path display
This commit is contained in:
parent
301d315ed1
commit
2df4556772
BIN
data/media.db
BIN
data/media.db
Binary file not shown.
|
|
@ -765,6 +765,10 @@ export default function ArtPlayerWrapper({
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
{/* File path display with smaller font */}
|
||||||
|
<div className="text-xs text-gray-300 mt-1 drop-shadow-md truncate">
|
||||||
|
{video.path}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* 5-Star Rating System - Always show if enabled, regardless of current values */}
|
{/* 5-Star Rating System - Always show if enabled, regardless of current values */}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue