[Client] Fix #2764

This commit is contained in:
syuilo 2018-12-19 06:04:59 +09:00
parent 0fed33bfdb
commit 37daff6d61
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
2 changed files with 12 additions and 2 deletions

View file

@ -24,9 +24,14 @@ export default Vue.extend({
};
},
mounted() {
const image = [
'image/jpeg',
'image/png',
'image/gif'
];
this.$root.api('users/notes', {
userId: this.user.id,
withFiles: true,
fileType: image,
limit: 9,
untilDate: new Date().getTime() + 1000 * 86400 * 365
}).then(notes => {

View file

@ -26,9 +26,14 @@ export default Vue.extend({
};
},
mounted() {
const image = [
'image/jpeg',
'image/png',
'image/gif'
];
this.$root.api('users/notes', {
userId: this.user.id,
withFiles: true,
fileType: image,
limit: 6,
untilDate: new Date().getTime() + 1000 * 86400 * 365
}).then(notes => {