forked from FoundKeyGang/FoundKey
Fix bug
This commit is contained in:
parent
c85c825bad
commit
a5b994259e
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue