diff --git a/hourglass/client/profile/profile.js b/hourglass/client/profile/profile.js index e91261f..2710ecb 100644 --- a/hourglass/client/profile/profile.js +++ b/hourglass/client/profile/profile.js @@ -91,7 +91,7 @@ Template.profile.helpers({ return "Say something about yourself!"; }, 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..."; }, grade() { // Returns the current user's grade