Skip to content

Commit

Permalink
bugfix/#2237 - Syntax error in BaseSelect.vue (#2240)
Browse files Browse the repository at this point in the history
  • Loading branch information
jszczech authored and patzick committed Jan 18, 2019
1 parent 26da49a commit 4e23a70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/themes/default/components/core/blocks/Form/BaseSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
'empty': !selected
}"
:autocomplete="autocomplete"
@focus="$emit('focus');"
@blur="$emit('blur');"
@focus="$emit('focus')"
@blur="$emit('blur')"
@change="$emit('input', $event.target.value)"
>
<option v-if="!selected"/>
Expand All @@ -23,7 +23,7 @@
</select>
<label>{{ placeholder }}</label>

<template if="validations">
<template v-if="validations">
<span
v-for="(validation, index) in validations"
:key="index"
Expand Down

0 comments on commit 4e23a70

Please sign in to comment.