lint fixes

pull/104/head
cagataycivici 2019-11-19 17:05:22 +03:00
parent 7fea43330c
commit d4f1d1bfdb
3 changed files with 11 additions and 11 deletions

View File

@ -244,7 +244,7 @@ export default {
methods: { methods: {
loadChunk(index, length) { loadChunk(index, length) {
let chunk = []; let chunk = [];
for (let i = 0; i < length; i++) { for (let i = 0; i &lt; length; i++) {
chunk[i] = {...this.inmemoryData[i], ...{vin: (index + i)}}; chunk[i] = {...this.inmemoryData[i], ...{vin: (index + i)}};
} }