It looks like there was a variable mistype causing the page
to not load, but the setting that the lp bug mentions wasn't being
properly bound and needed to be wrapped to a boolean.
Signed-off by: Cesar Velez <cesar.velez@equinoxinitiative.org>
Signed-off-by: Josh Stompro <stomproj@larl.org>
Signed-off-by: Rogan Hamby <rogan.hamby@gmail.com>
Signed-off-by: Jason Etheridge <jason@EquinoxInitiative.org>
// apply default user setting values
angular.forEach(setting_types, function(stype, index) {
if (stype.reg_default() != undefined) {
- service.user_settings[setting.name()] =
- setting.reg_default();
+ service.user_settings[stype.name()] =
+ Boolean(stype.reg_default());
}
});
}