Update src/client/app/desktop/views/pages/deck/deck.user-column.vue

This commit is contained in:
syuilo 2018-10-23 06:49:23 +09:00
parent d3d612a89b
commit f51fdc0dbf
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
1 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ export default Vue.extend({
(this as any).api('charts/user/notes', { (this as any).api('charts/user/notes', {
userId: this.user.id, userId: this.user.id,
span: 'day', span: 'day',
limit: 30 limit: 21
}).then(stats => { }).then(stats => {
const normal = []; const normal = [];
const reply = []; const reply = [];
@ -146,7 +146,7 @@ export default Vue.extend({
const m = now.getMonth(); const m = now.getMonth();
const d = now.getDate(); const d = now.getDate();
for (let i = 0; i < 30; i++) { for (let i = 0; i < 21; i++) {
const x = new Date(y, m, d - i); const x = new Date(y, m, d - i);
normal.push([ normal.push([
x, x,