Skip to content

Commit

Permalink
[Billing] Fix post code
Browse files Browse the repository at this point in the history
  • Loading branch information
that-guy-iain committed Jun 11, 2024
1 parent ac462d7 commit f2b48c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/views/App/Billing/BillingAddress.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
<span class="error-message" v-if="errors.country" v-for="error in errors.country">{{ error }}</span>

<label class="label">{{ $t('app.billing.details.postal_code') }}</label>
<input type="text" class="form-field" :class="{'form-error': errors.postal_code !== undefined}" v-model="address.postal_code" />
<span class="error-message" v-if="errors.postal_code" v-for="error in errors.postal_code">{{ error }}</span>
<input type="text" class="form-field" :class="{'form-error': errors.post_code !== undefined}" v-model="address.post_code" />
<span class="error-message" v-if="errors.post_code" v-for="error in errors.post_code">{{ error }}</span>

<div class="mt-3">

Expand Down

0 comments on commit f2b48c5

Please sign in to comment.