Merge branch 'MDL-77241-400' of https://github.com/paulholden/moodle into MOODLE_400_STABLE

This commit is contained in:
Andrew Nicols
2023-02-15 11:14:44 +08:00
3 changed files with 3 additions and 3 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -161,7 +161,7 @@ export default class Component extends BaseComponent {
const closestCollapse = event.target.closest(this.selectors.COLLAPSE);
// Assume that chevron is the only collapse toggler in a section heading;
// I think this is the most efficient way to verify at the moment.
const isChevron = closestCollapse.closest(this.selectors.SECTION_ITEM);
const isChevron = closestCollapse?.closest(this.selectors.SECTION_ITEM);
if (sectionlink || isChevron) {