fix videos not appearing with snaps in recent videos

obj-track-as-separate-option
Moe 2023-11-20 13:14:48 -08:00
parent be7080eae6
commit 7c06ba823f
1 changed files with 3 additions and 3 deletions

View File

@ -75,7 +75,7 @@ $(document).ready(function(){
function onRecentVideosFieldChange(){
var theSelected = `${monitorList.val()}`
loadVideos({
limit: 10,
limit: 0,
monitorId: theSelected || undefined,
},function(){
liveStamp()
@ -88,7 +88,7 @@ $(document).ready(function(){
drawMonitorListToSelector(monitorList.find('optgroup'))
monitorList.val(theSelected)
loadVideos({
limit: 20,
limit: 0,
monitorId: theSelected || undefined,
},function(){
liveStamp()
@ -97,7 +97,7 @@ $(document).ready(function(){
onDashboardReady(function(){
drawMonitorListToSelector(monitorList.find('optgroup'))
loadVideos({
limit: 20,
limit: 0,
},function(){
liveStamp()
})