Skip to content

Commit

Permalink
fix: duplicated variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
camarm-dev committed Nov 24, 2024
1 parent c5d3bd9 commit deb2b30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/components/PluralsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {IonItem, IonLabel, IonList} from "@ionic/vue"
<template>
<ion-list inset class="border-radius border">
<ion-item color="light" lines="full">
<ion-label slot="start" v-if="plurals.some(plural => plural.label != '')">
<ion-label slot="start" v-if="plurals.some(el => el.label != '')">
<p>{{ $t('definition.form') }}</p>
</ion-label>
<ion-label slot="start">
Expand All @@ -17,7 +17,7 @@ import {IonItem, IonLabel, IonList} from "@ionic/vue"
</ion-label>
</ion-item>
<ion-item lines="full" :key="`plural-${plural.singular}-${plural.plural}-${plurals.indexOf(plural)}`" v-for="plural in plurals">
<ion-label slot="start" v-if="plurals.some(plural => plural.label != '')">
<ion-label slot="start" v-if="plurals.some(el => el.label != '')">
<h5 v-html="plural.label"/>
</ion-label>
<ion-label slot="start">
Expand Down

0 comments on commit deb2b30

Please sign in to comment.