Skip to content
Snippets Groups Projects

Resolve "Eingabe einer Zahl außerhalb des Kommentarfeldes trägt Zahl in Score ein"

2 files
+ 2
5
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -177,10 +177,7 @@ export default {
handleKeypress (event) {
// only handle keypress if nothing is focused
if (document.activeElement.tagName === "BODY") {
if (this.score === undefined) {
this.score = event.key
}
this.score = event.key
const scoreInput = document.getElementById('score-input')
scoreInput.scrollIntoView()
scoreInput.focus()
Loading