Name Monitors in PowerVideoViewer by name not ID

merge-requests/367/merge
Fritz 2021-06-29 12:47:54 +00:00
parent d1d912cdc2
commit 3a15e26395
1 changed files with 3 additions and 1 deletions

View File

@ -234,9 +234,11 @@ $(document).ready(function(e){
var groups = []
var groupId = 1
Object.keys(powerVideoLoadedVideos).forEach(function(monitorId,n){
var mon = Object.values($.ccio.mon).find(m => { return m.mid === monitorId });
var name = mon.name;
groups.push({
id: groupId,
content: monitorId
content: name + " | " + monitorId
})
groupId += 1
groups.push({