Skip to content

Commit

Permalink
[MS] Updated confirm button placement
Browse files Browse the repository at this point in the history
  • Loading branch information
fabienSvtr committed Oct 9, 2024
1 parent 52c7510 commit 3f3d148
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/components/ms-dropdown/MsAddressDropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@
:key="index"
@click="$emit('addressSelected', addr)"
>
<ion-label class="option-text subtitles-sm">
<ion-text class="option-text subtitles-sm">
<span class="option-text__label">
{{ addr.address }}
</span>
<span class="option-text__description">
{{ `${addr.city} (${addr.country})` }}
</span>
</ion-label>
</ion-text>
</ion-item>
</ion-list>
</template>

<script setup lang="ts">
import { IonList, IonItem, IonLabel } from '@ionic/vue';
import { IonList, IonItem, IonText } from '@ionic/vue';
import { Address } from '@lib/services';
defineProps<{
Expand Down

0 comments on commit 3f3d148

Please sign in to comment.