no this - define in constructor - [ci skip]

This commit is contained in:
Regis 2016-11-18 11:35:35 -06:00
parent 061b4dd82a
commit 758cdf54fe

View file

@ -10,11 +10,10 @@
if (pipe.id === newPipe.id) pipe = Object.assign({}, pipe, newPipe);
});
};
}
currentPageSlicer(update) {
if (update.length <= 30) return update;
return update.slice(0, 29);
this.currentPageSlicer = (update) => {
if (update.length <= 30) return update;
return update.slice(0, 29);
};
}
updatePipelines(apiResponse) {