Skip to content

Commit

Permalink
fix: suggesting value that it has already been changed to
Browse files Browse the repository at this point in the history
  • Loading branch information
BrewingWeasel committed Jul 22, 2024
1 parent 22d8295 commit 88ca6d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SelectedWordView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ async function updateLemma() {
variant="secondary"
class="text-sm"
size="sm"
v-for="form in word.other_forms"
v-for="form in word.other_forms.filter((f) => f !== word.lemma)"
@click="
word_history.push(form);
word_history_index++;
Expand Down

0 comments on commit 88ca6d2

Please sign in to comment.