BigW Consortium Gitlab

Commit 758cdf54 by Regis

no this - define in constructor - [ci skip]

parent 061b4dd8
...@@ -10,11 +10,10 @@ ...@@ -10,11 +10,10 @@
if (pipe.id === newPipe.id) pipe = Object.assign({}, pipe, newPipe); if (pipe.id === newPipe.id) pipe = Object.assign({}, pipe, newPipe);
}); });
}; };
} this.currentPageSlicer = (update) => {
if (update.length <= 30) return update;
currentPageSlicer(update) { return update.slice(0, 29);
if (update.length <= 30) return update; };
return update.slice(0, 29);
} }
updatePipelines(apiResponse) { updatePipelines(apiResponse) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment