瀏覽代碼

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) {


Loading…
取消
儲存