set participant name

This commit is contained in:
jojo aquino 2025-04-03 22:39:42 +01:00
parent 8ae7873453
commit 04b85d3619
2 changed files with 3 additions and 2 deletions

View File

@ -127,7 +127,7 @@
<!-- Modal Header -->
<div class="modal-header draggable">
<h4 class="modal-title">Signatory Name</h4>
<h4 id="SignatoryName" class="modal-title">Signatory Name</h4>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>

View File

@ -20,6 +20,7 @@
control_participantListGroup = document.getElementById("ParticipantListGroup"),
control_selfieImage = document.getElementById("SelfieImage"),
control_identificationImage = document.getElementById("IdentificationImage"),
control_signatoryName = document.getElementById("SignatoryName"),
x = 1;
let participants = JSON.parse(control_participants.value);
@ -254,7 +255,7 @@
if (!participant) {
return;
}
control_signatoryName.textContent = participant.DisplayName;
let selfieUrl = jfa.utilities.routing.getCurrentURLWithHandler("SelfieImage");
selfieUrl.searchParams.append("meetingRoomUserID", participant.RoomUserID);