Skip to content

Commit

Permalink
fix bootstrap 3 record session formatting #6618
Browse files Browse the repository at this point in the history
  • Loading branch information
si458 authored Dec 21, 2024
1 parent 988983b commit 59fcc0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions views/default3.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -15228,7 +15228,7 @@
var flags = (currentMesh.flags) ? currentMesh.flags : 0, x = '', expire = 0;
if ((typeof currentMesh.expireDevs == 'number') && (currentMesh.expireDevs > 0)) { expire = currentMesh.expireDevs; if (expire > 2000) { expire = 2000; } }
if ((serverinfo.devGroupSessionRecording == 1) && (currentMesh.mtype != 4)) {
x += '<div><label><input type=checkbox id=d20flag4 onchange=p20editmeshfeaturesValidate() ' + ((flags & 4) ? 'checked' : '') + '>' + "Record sessions" + '</label><br></div>';
x += '<div class="form-check"><label><input type=checkbox id=d20flag4 class="form-check-input me-2" onchange=p20editmeshfeaturesValidate() ' + ((flags & 4) ? 'checked' : '') + '>' + "Record sessions" + '</label><br></div>';
}
if ((currentMesh.mtype == 2) || (currentMesh.mtype == 4)) {
x += '<div class="form-check"><label><input type=checkbox id=d20flag2 class="form-check-input me-2" onchange=p20editmeshfeaturesValidate() ' + ((flags & 2) ? 'checked' : '') + '>' + ((currentMesh.mtype == 4) ? "Sync server device name to port name" : "Sync server device name to hostname") + '</label><br></div>';
Expand Down Expand Up @@ -20737,4 +20737,4 @@
</script>
</body>

</html>
</html>

0 comments on commit 59fcc0d

Please sign in to comment.