Fix bug
This commit is contained in:
parent
c85c825bad
commit
a5b994259e
|
@ -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);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue