summaryrefslogtreecommitdiffstats
path: root/client/components/sidebar/sidebar.js
diff options
context:
space:
mode:
authorMaxime Quandalle <maxime@quandalle.com>2016-01-03 23:45:46 +0100
committerMaxime Quandalle <maxime@quandalle.com>2016-01-03 23:45:46 +0100
commitac6491ea127215cb07ca490fc2cc1af7c3778e8f (patch)
treeb5f3a54950289f39d3eafc745f133d2512c24cb5 /client/components/sidebar/sidebar.js
parent46747b01fb3eb42901518a3fdb8a5f6d823465eb (diff)
downloadwekan-ac6491ea127215cb07ca490fc2cc1af7c3778e8f.tar.gz
wekan-ac6491ea127215cb07ca490fc2cc1af7c3778e8f.tar.bz2
wekan-ac6491ea127215cb07ca490fc2cc1af7c3778e8f.zip
Remove unnecessary template name declaration
This code was duplicate with the name we use to `register` the component. A update of blaze-component removed the need to duplicate this declaration.
Diffstat (limited to 'client/components/sidebar/sidebar.js')
-rw-r--r--client/components/sidebar/sidebar.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/client/components/sidebar/sidebar.js b/client/components/sidebar/sidebar.js
index e414c1f9..0af32f8f 100644
--- a/client/components/sidebar/sidebar.js
+++ b/client/components/sidebar/sidebar.js
@@ -9,10 +9,6 @@ const viewTitles = {
};
BlazeComponent.extendComponent({
- template() {
- return 'sidebar';
- },
-
mixins() {
return [Mixins.InfiniteScrolling, Mixins.PerfectScrollbar];
},
@@ -232,10 +228,6 @@ Template.membersWidget.onRendered(draggableMembersLabelsWidgets);
Template.labelsWidget.onRendered(draggableMembersLabelsWidgets);
BlazeComponent.extendComponent({
- template() {
- return 'addMemberPopup';
- },
-
onCreated() {
this.error = new ReactiveVar('');
this.loading = new ReactiveVar(false);