From 8af4875ae5786e084bce082f212bf583dba3d843 Mon Sep 17 00:00:00 2001 From: gornius Date: Sat, 20 Apr 2024 23:38:41 +0200 Subject: [PATCH 1/5] Change "Any" to "All" in person picker --- composables/useWordsDictionary.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composables/useWordsDictionary.ts b/composables/useWordsDictionary.ts index c1d9f21..1788716 100644 --- a/composables/useWordsDictionary.ts +++ b/composables/useWordsDictionary.ts @@ -13,7 +13,7 @@ export function useWordsDictionary() { m1: '1. Plural', m2: '2. Plural', m3: '3. Plural', - all: 'Any', + all: 'All', } if (typeof verb === 'string') { return personDictionary[verb as Verb['person']]; From 0f1cadd9ce7d7ae59643e473db92e907f42b6d11 Mon Sep 17 00:00:00 2001 From: gornius Date: Sat, 20 Apr 2024 23:43:58 +0200 Subject: [PATCH 2/5] Ignore whitespaces on beginning and end of answer --- components/QuestionCard.vue | 1 + composables/useWordComparator.ts | 9 ++++++++- composables/useWordsDictionary.ts | 1 + 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/components/QuestionCard.vue b/components/QuestionCard.vue index 47ed5d8..55e6023 100644 --- a/components/QuestionCard.vue +++ b/components/QuestionCard.vue @@ -25,6 +25,7 @@ function giveAnswer() {