Merge pull request #1835 from SchrodingersGat/disable-secondary

Disable secondary modals
This commit is contained in:
Oliver 2021-07-18 21:46:22 +10:00 committed by GitHub
commit f9b7257bdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -765,6 +765,9 @@ function attachSecondaryModal(modal, options) {
function attachSecondaries(modal, secondaries) {
/* Attach a provided list of secondary modals */
// 2021-07-18 - Secondary modals will be disabled for now, until they are re-implemented in the "API forms" architecture
return;
for (var i = 0; i < secondaries.length; i++) {
attachSecondaryModal(modal, secondaries[i]);
}