This commit is contained in:
syuilo 2018-04-28 10:27:53 +09:00
parent c85c825bad
commit a5b994259e
2 changed files with 2 additions and 2 deletions

View File

@ -156,7 +156,7 @@ export default Vue.extend({
this.notes = this.notes.slice(0, displayLimit); this.notes = this.notes.slice(0, displayLimit);
} }
} else { } else {
this.queue.unshift(note); this.queue.push(note);
} }
}, },

View File

@ -144,7 +144,7 @@ export default Vue.extend({
this.notes = this.notes.slice(0, displayLimit); this.notes = this.notes.slice(0, displayLimit);
} }
} else { } else {
this.queue.unshift(note); this.queue.push(note);
} }
}, },