This commit is contained in:
Andrew Nicols 2021-12-02 12:09:33 +08:00
commit e6600293f4
3 changed files with 4 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

View File

@ -111,7 +111,8 @@ define([
}
}
var activeValue = selectionRegion.attr('data-active-value');
// Ensure we are creating a properly formed selector based on the active value.
var activeValue = selectionRegion.attr('data-active-value')?.replace(/"/g, '\\"');
return selectionRegion.find('[data-value="' + activeValue + '"]');
};