mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
fix eslint
This commit is contained in:
parent
e304185c23
commit
f5eba16a50
2 changed files with 3 additions and 3 deletions
|
|
@ -1,3 +1,4 @@
|
||||||
|
/* global saveAs */
|
||||||
Template.boardMenuPopup.events({
|
Template.boardMenuPopup.events({
|
||||||
'click .js-rename-board': Popup.open('boardChangeTitle'),
|
'click .js-rename-board': Popup.open('boardChangeTitle'),
|
||||||
'click .js-open-archives'() {
|
'click .js-open-archives'() {
|
||||||
|
|
@ -26,7 +27,7 @@ Template.boardMenuPopup.events({
|
||||||
saveAs(dataToSave, filename);
|
saveAs(dataToSave, filename);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
Template.boardMenuPopup.helpers({
|
Template.boardMenuPopup.helpers({
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ Meteor.methods({
|
||||||
} else {
|
} else {
|
||||||
throw new Meteor.Error('error-board-notAMember');
|
throw new Meteor.Error('error-board-notAMember');
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
class Exporter {
|
class Exporter {
|
||||||
|
|
@ -53,7 +53,6 @@ class Exporter {
|
||||||
'profile.avatarUrl': 1,
|
'profile.avatarUrl': 1,
|
||||||
}};
|
}};
|
||||||
result.users = Users.find(byUserIds, userFields).fetch();
|
result.users = Users.find(byUserIds, userFields).fetch();
|
||||||
//return JSON.stringify(result);
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue