Skip to content
Snippets Groups Projects
Commit a5b99425 authored by syuilo's avatar syuilo
Browse files

Fix bug

parent c85c825b
No related branches found
Tags 8.19.0
No related merge requests found
......@@ -156,7 +156,7 @@ export default Vue.extend({
this.notes = this.notes.slice(0, displayLimit);
}
} else {
this.queue.unshift(note);
this.queue.push(note);
}
},
......
......@@ -144,7 +144,7 @@ export default Vue.extend({
this.notes = this.notes.slice(0, displayLimit);
}
} else {
this.queue.unshift(note);
this.queue.push(note);
}
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment