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:
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user