|
@@ -8,10 +8,10 @@ Template.boardListHeaderBar.events({
|
|
|
|
|
|
Template.boardListHeaderBar.helpers({
|
|
Template.boardListHeaderBar.helpers({
|
|
templatesBoardId() {
|
|
templatesBoardId() {
|
|
- return Meteor.user().getTemplatesBoardId();
|
|
|
|
|
|
+ return Meteor.user() && Meteor.user().getTemplatesBoardId();
|
|
},
|
|
},
|
|
templatesBoardSlug() {
|
|
templatesBoardSlug() {
|
|
- return Meteor.user().getTemplatesBoardSlug();
|
|
|
|
|
|
+ return Meteor.user() && Meteor.user().getTemplatesBoardSlug();
|
|
},
|
|
},
|
|
});
|
|
});
|
|
|
|
|