fix: remove hardcoded frame range from LibraryView title

When playing full video, only show filename.
Don't show F0-F99999 which is misleading.
This commit is contained in:
2026-07-24 22:56:04 +08:00
parent c2901338e1
commit 717e2deb6a

View File

@@ -842,7 +842,7 @@ function toggleSelect(f: any) {
}
function playVideo(f: any) {
currentVideo.value = { fileUuid: f.file_uuid, startFrame: 0, endFrame: 99999, title: `F0-F99999 (${f.file_name})` }
currentVideo.value = { fileUuid: f.file_uuid, startFrame: 0, endFrame: 99999, title: f.file_name }
playing.value = true
}