mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-12-27 15:45:53 -05:00
Recordings tab fix.
This commit is contained in:
parent
fe0d16ff82
commit
c12306b0b8
@ -11984,7 +11984,7 @@
|
|||||||
var p52recordings = null;
|
var p52recordings = null;
|
||||||
function updateRecordings() {
|
function updateRecordings() {
|
||||||
// Save the list of currently checked recordings
|
// Save the list of currently checked recordings
|
||||||
var checkedRecordings = [], elements = document.getElementsByClassName('RecordingCheckbox'), x = '';
|
var checkedRecordings = [], elements = document.getElementsByClassName('RecordingCheckbox'), x = '', addHeader = true;
|
||||||
for (var i=0;i<elements.length;i++) { if (elements[i].checked) { checkedRecordings.push(elements[i].value); } }
|
for (var i=0;i<elements.length;i++) { if (elements[i].checked) { checkedRecordings.push(elements[i].value); } }
|
||||||
|
|
||||||
if (p52recordings == null) {
|
if (p52recordings == null) {
|
||||||
@ -11993,7 +11993,7 @@
|
|||||||
x += '<div style=width:100%;text-align:center;margin-top:20px><i>' + "No recordings." + "</i></div>";
|
x += '<div style=width:100%;text-align:center;margin-top:20px><i>' + "No recordings." + "</i></div>";
|
||||||
} else {
|
} else {
|
||||||
// Display the users using the sorted list
|
// Display the users using the sorted list
|
||||||
x += '<table class=p3usersTable cellpadding=0 cellspacing=0>', addHeader = true;
|
x += '<table class=p3usersTable cellpadding=0 cellspacing=0>';
|
||||||
x += '<th>' + "Session" + '<th style=width:110px>' + nobreak("Start Time") + '<th style=width:110px>' + "Duration" + '<th style=width:110px>' + "Size";
|
x += '<th>' + "Session" + '<th style=width:110px>' + nobreak("Start Time") + '<th style=width:110px>' + "Duration" + '<th style=width:110px>' + "Size";
|
||||||
if (p52recordings != null) {
|
if (p52recordings != null) {
|
||||||
var recdate = null;
|
var recdate = null;
|
||||||
|
Loading…
Reference in New Issue
Block a user