diff --git a/atlas/templates/atlas/user_uploads.html b/atlas/templates/atlas/user_uploads.html index 4a0fe297..974487b9 100644 --- a/atlas/templates/atlas/user_uploads.html +++ b/atlas/templates/atlas/user_uploads.html @@ -3,6 +3,21 @@ {% load crispy_forms_tags %} {% block content %} +

Uploaded dicoms

User: {{user}}
Upload more dicoms
@@ -774,13 +789,6 @@ item.classList.toggle('selected', cb.checked); cb.dispatchEvent(new Event('change', { bubbles: true })); }); - - // Prevent Bootstrap 5 from stealing focus from Select2 inputs inside modals - document.addEventListener('focusin', function (e) { - if (e.target && e.target.closest && (e.target.closest('.select2-container') || e.target.closest('.select2-search__field') || e.target.closest('.select2-dropdown'))) { - e.stopImmediatePropagation(); - } - }, true);