fix final profile bugs; should be ready for 0.1.2

This commit is contained in:
Yaman Qalieh 2016-09-29 23:57:32 -04:00
parent 9e8219b463
commit 6801983777

View File

@ -91,7 +91,7 @@ Template.profile.helpers({
return "Say something about yourself!"; return "Say something about yourself!";
}, },
school() { // Returns the current user's school's name school() { // Returns the current user's school's name
if (Session.get("user").school !== undefined && Session.get("user").school !== null) return Session.get("user").school; if (!_.contains([null, undefined, ""], Session.get("user").school)) return Session.get("user").school;
return "Click here to edit..."; return "Click here to edit...";
}, },
grade() { // Returns the current user's grade grade() { // Returns the current user's grade