Fix some bugs introduced in aa974aa

Yes Wekan need some tests. Yes I need to stop refactoring my code
when I’m halp-sleeping in my bed at 4am.
This commit is contained in:
Maxime Quandalle 2015-10-29 23:08:27 +01:00
parent e92f67f191
commit dd3cdf3945
4 changed files with 8 additions and 6 deletions

View file

@ -5,8 +5,8 @@ BlazeComponent.extendComponent({
editTitle(evt) {
evt.preventDefault();
const newTitle = this.childrenComponents('inlinedForm')[0].getValue();
const list = this.currentData().trim();
const newTitle = this.childrenComponents('inlinedForm')[0].getValue().trim();
const list = this.currentData();
if (newTitle) {
list.rename(newTitle.trim());
}