summaryrefslogtreecommitdiffstats
path: root/models
diff options
context:
space:
mode:
Diffstat (limited to 'models')
-rw-r--r--models/swimlanes.js2
-rw-r--r--models/users.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/models/swimlanes.js b/models/swimlanes.js
index 9d4e16de..be3f617c 100644
--- a/models/swimlanes.js
+++ b/models/swimlanes.js
@@ -149,7 +149,7 @@ Swimlanes.helpers({
isBoardTemplatesSwimlane() {
const user = Users.findOne(Meteor.userId());
- return user.profile.boardsTemplatesSwimlaneId === this._id;
+ return user.profile.boardTemplatesSwimlaneId === this._id;
},
});
diff --git a/models/users.js b/models/users.js
index 1493aa0d..87f2b860 100644
--- a/models/users.js
+++ b/models/users.js
@@ -739,7 +739,7 @@ if (Meteor.isServer) {
});
Boards.insert({
- title: TAPi18n.__('templates-board'),
+ title: TAPi18n.__('templates'),
permission: 'private',
type: 'template-container'
}, fakeUser, (err, boardId) => {