minor fixes
Build / Build-image (push) Successful in 54s

This commit is contained in:
2026-08-11 00:28:13 +02:00
parent 78fa96ea64
commit ddcb410eee
4 changed files with 12 additions and 7 deletions
+7 -2
View File
@@ -53,7 +53,7 @@ import Modal from '../components/Modal.vue';
}
},
onkeyup() {
this.words = this.guess.trim().split(/\W+/);
this.words = this.guess.trim().split(/\s+/);
}
}
}
@@ -77,7 +77,7 @@ import Modal from '../components/Modal.vue';
<br>
<br>
You can use the following color codes to determin how close you were to the correct answer:
You can use the following color codes to determine how close you were to the correct answer:
<div class="flex-container">
<GuessWord :correctness="4">Correct word, correct place</GuessWord>
@@ -87,7 +87,12 @@ import Modal from '../components/Modal.vue';
</div>
If you have any feedback, <a style="text-decoration: underline;" href="mailto:peter@sc0tt.org">
let me know in an email
</a>, or create a <a style="text-decoration: underline;" href='https://gitea.sc0tt.org/Belupeti/TLA/pulls'>pull request</a>
<br><br>
<h2 style="font-weight: bold;">IMPORTANT</h2>
<p>Only use lowercase letters, I have not yet implemented automatic casing yet and I should really get some sleep</p>
</template>
</UModal>