mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 13:43:08 +02:00
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);
|
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 a new issue