in source/static-assets/js/main.js [174:182]
$('.publication_' + publication.id).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)
}
}
}
})