mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 00:12:42 +02:00
MDL-83661 core_courseformat: fix drop file modal
When the user drags and drops a file into a course section that can create more than one type of activity (for example a zip file) the modal had repeated form elements ids. Now every radio option has its own id.
This commit is contained in:
parent
505a85eb9a
commit
121f4ad5c5
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -345,10 +345,11 @@ class HandlerManager {
|
||||
let hasDefault = false;
|
||||
fileHandlers.forEach((handler, index) => {
|
||||
const isDefault = (defaultModule == handler.module);
|
||||
const optionNumber = index + 1;
|
||||
data.handlers.push({
|
||||
...handler,
|
||||
selected: isDefault,
|
||||
labelid: `fileuploader_${data.uploadid}`,
|
||||
labelid: `fileuploader_${data.uploadid}_${optionNumber}`,
|
||||
value: index,
|
||||
});
|
||||
hasDefault = hasDefault || isDefault;
|
||||
|
Loading…
x
Reference in New Issue
Block a user