ソースを参照

Fix: Should return rowSize instead of 7

pull/169/head
winkidney 5年前
committed by Isaac Bythewood
コミット
2010224599
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      pinry/static/js/vue/main.js

+ 1
- 1
pinry/static/js/vue/main.js ファイルの表示

@@ -99,7 +99,7 @@ Vue.component('pin', {
index = index + 1;
var rowNumber = Math.floor(index % rowSize);
if (rowNumber === 0) {
return 7;
return rowSize;
}
return rowNumber;
}


読み込み中…
キャンセル
保存