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);
}
} 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);
}
} else {
this.queue.unshift(note);
this.queue.push(note);
}
},