Skip to content

Commit fa2fba2

Browse files
Corrected keyup issue
1 parent f6d8e3e commit fa2fba2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/views/portfolio/components/ComponentSearch.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
<portfolio-widget-row :fetch="true" />
44
<b-row>
55
<b-col md="4" lg="3">
6-
<b-input-group-form-select id="input-subject" required="true"
7-
v-model="subject" :options="subjects" v-on:keyup.enter="performSearch" />
6+
<b-input-group-form-select id="input-subject" required="true" v-model="subject" :options="subjects"/>
87
</b-col>
98
<b-col md="7" lg="6">
10-
<b-input-group-form-input v-if="subject !== 'COORDINATES'" id="input-value" required="true" type="text" v-model="value" lazy="true" />
9+
<b-input-group-form-input v-if="subject !== 'COORDINATES'" id="input-value" required="true" type="text" v-model="value" lazy="true" v-on:keyup.enter="performSearch" />
1110
<b-input-group v-else-if="subject === 'COORDINATES'">
1211
<b-form-input id="input-value-coordinates-group" :placeholder="$t('message.group')" type="text" v-model="coordinatesGroup" v-on:keyup.enter="performSearch"></b-form-input>
1312
<b-form-input id="input-value-coordinates-name" :placeholder="$t('message.name')" type="text" v-model="coordinatesName" v-on:keyup.enter="performSearch"></b-form-input>

0 commit comments

Comments
 (0)