diff --git a/ogcp/static/js/ogcp.js b/ogcp/static/js/ogcp.js index 977f5a7..875084d 100644 --- a/ogcp/static/js/ogcp.js +++ b/ogcp/static/js/ogcp.js @@ -94,7 +94,7 @@ function checkChildrenCheckboxes() { others.trigger('change'); } else { // Look for room, deselect all other rooms - const selectedRoom = $(this).parent().parent().parent().children('[name="scope-room"]'); + const selectedRoom = $('[data-room="' + $(this).data('parentRoom') + '"]'); const others = $('input:checkbox[name="scope-room"]').not(selectedRoom); others.prop('checked', false).prop('indeterminate', false); others.each(function() { diff --git a/ogcp/templates/macros.html b/ogcp/templates/macros.html index 4ff8477..6ba1d38 100644 --- a/ogcp/templates/macros.html +++ b/ogcp/templates/macros.html @@ -1,7 +1,7 @@ {% macro scopes_tree_collapse(scopes, state='', selection_mode='scopes') -%}