소스 검색

Fix: Should use newPin's length instead of the old length of pin

pull/169/head
winkidney 5 년 전
committed by Isaac Bythewood
부모
커밋
765a188717
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      pinry/static/js/vue/main.js

+ 1
- 1
pinry/static/js/vue/main.js 파일 보기

@@ -228,7 +228,7 @@ Vue.component('pin-container', {
fetchPins(self.status.offset).then(
function (res) {
var newPins = self.pins.concat(res.data.results);
self.counter.reset(self.pins.length);
self.counter.reset(newPins.length);
self.pins = newPins;
self.status.offset += res.data.results.length;
if (res.data.next === null) {


불러오는 중...
취소
저장