MDL-73196 mod_bigbluebuttonbn: Fix blocked participant selection

This commit is contained in:
jfederico
2021-12-07 16:45:03 +00:00
parent 51149a78cc
commit bef53cf1b8
3 changed files with 5 additions and 5 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+3 -3
View File
@@ -184,7 +184,7 @@ const participantListInit = () => {
};
/**
* Add rows to the participant list dependingon the current selection.
* Add rows to the participant list depending on the current selection.
*
* @param {string} selectionTypeValue
* @param {string} selectionValue
@@ -359,9 +359,9 @@ const updateSelectionFromType = (currentTypeSelect) => {
if (currentTypeSelect.value === 'all') {
createNewOption(participantSelect, '---------------', 'all');
currentTypeSelect.disabled = true;
participantSelect.disabled = true;
} else {
currentTypeSelect.disabled = false;
participantSelect.disabled = false;
}
}
};