in source/static-assets/js/main.js [161:169]
$('.user-attribute-checkbox').each(function (attribute, index) {
for (const property in userAttributes) {
if ($(this).attr('name') === property) {
if (userAttributes[property].indexOf($(this).val()) > -1) {
$(this).prop('checked', true)
}
}
}
})