Skip to content

Commit

Permalink
fix: Spelling mistake in add and edit vendor page on wp-admin area is…
Browse files Browse the repository at this point in the history
…sue fixed (#811)
  • Loading branch information
alamgircsebd authored Apr 22, 2020
1 parent 8fc9441 commit e905770
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/admin/pages/VendorAccountFields.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
</div>

<div class="column">
<label for="store-password">{{ __( 'Passwrod', 'dokan-lite') }}</label>
<label for="store-password">{{ __( 'Password', 'dokan-lite') }}</label>
<input
v-if="showPassword"
type="text"
Expand Down
16 changes: 8 additions & 8 deletions src/admin/pages/VendorSocialFields.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,42 +9,42 @@
<div class="dokan-form-group">
<div class="column">
<label for="">{{ __( 'Facebook', 'dokan-lite' ) }}</label>
<input type="text" class="dokan-form-input" v-model="vendorInfo.social.fb" :placeholder="__( 'https://exmaple.com' )">
<input type="text" class="dokan-form-input" v-model="vendorInfo.social.fb" :placeholder="__( 'https://example.com' )">
</div>

<div class="column">
<label for="">{{ __( 'Flickr', 'dokan-lite' ) }}</label>
<input type="text" class="dokan-form-input" v-model="vendorInfo.social.flickr" :placeholder="__( 'https://exmaple.com' )">
<input type="text" class="dokan-form-input" v-model="vendorInfo.social.flickr" :placeholder="__( 'https://example.com' )">
</div>

<div class="column">
<label for="">{{ __( 'Google Plus', 'dokan-lite' ) }}</label>
<input type="text" class="dokan-form-input" v-model="vendorInfo.social.gplus" :placeholder="__( 'https://exmaple.com' )">
<input type="text" class="dokan-form-input" v-model="vendorInfo.social.gplus" :placeholder="__( 'https://example.com' )">
</div>

<div class="column">
<label for="">{{ __( 'Twitter', 'dokan-lite' ) }}</label>
<input type="text" class="dokan-form-input" v-model="vendorInfo.social.twitter" :placeholder="__( 'https://exmaple.com' )">
<input type="text" class="dokan-form-input" v-model="vendorInfo.social.twitter" :placeholder="__( 'https://example.com' )">
</div>

<div class="column">
<label for="">{{ __( 'Youtube', 'dokan-lite' ) }}</label>
<input type="text" class="dokan-form-input" v-model="vendorInfo.social.youtube" :placeholder="__( 'https://exmaple.com' )">
<input type="text" class="dokan-form-input" v-model="vendorInfo.social.youtube" :placeholder="__( 'https://example.com' )">
</div>

<div class="column">
<label for="">{{ __( 'Linkedin', 'dokan-lite' ) }}</label>
<input type="text" class="dokan-form-input" v-model="vendorInfo.social.linkedin" :placeholder="__( 'https://exmaple.com' )">
<input type="text" class="dokan-form-input" v-model="vendorInfo.social.linkedin" :placeholder="__( 'https://example.com' )">
</div>

<div class="column">
<label for="">{{ __( 'Pinterest', 'dokan-lite' ) }}</label>
<input type="text" class="dokan-form-input" v-model="vendorInfo.social.pinterest" :placeholder="__( 'https://exmaple.com' )">
<input type="text" class="dokan-form-input" v-model="vendorInfo.social.pinterest" :placeholder="__( 'https://example.com' )">
</div>

<div class="column">
<label for="">{{ __( 'Instagram', 'dokan-lite' ) }}</label>
<input type="text" class="dokan-form-input" v-model="vendorInfo.social.instagram" :placeholder="__( 'https://exmaple.com' )">
<input type="text" class="dokan-form-input" v-model="vendorInfo.social.instagram" :placeholder="__( 'https://example.com' )">
</div>

<!-- Add other social fields here -->
Expand Down

0 comments on commit e905770

Please sign in to comment.