Explorar el Código

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

pull/169/head
winkidney hace 5 años
committed by Isaac Bythewood
padre
commit
765a188717
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      pinry/static/js/vue/main.js

+ 1
- 1
pinry/static/js/vue/main.js Ver fichero

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


Cargando…
Cancelar
Guardar