no this - define in constructor - [ci skip]
This commit is contained in:
parent
061b4dd82a
commit
758cdf54fe
1 changed files with 4 additions and 5 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue