Skip to content
This repository was archived by the owner on Nov 9, 2022. It is now read-only.

Commit f4bc5cb

Browse files
committed
remove unnecessary closing tag
1 parent 2c04dc3 commit f4bc5cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/QueryBuilderRule.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
</option>
1414
</select>
1515

16-
<input :class="{ 'form-control': styled }" v-if="rule.inputType === 'text'" type="text" v-model="query.value" :placeholder="labels.textInputPlaceholder"></input>
17-
<input :class="{ 'form-control': styled }" v-if="rule.inputType === 'number'" type="number" v-model="query.value"></input>
16+
<input :class="{ 'form-control': styled }" v-if="rule.inputType === 'text'" type="text" v-model="query.value" :placeholder="labels.textInputPlaceholder">
17+
<input :class="{ 'form-control': styled }" v-if="rule.inputType === 'number'" type="number" v-model="query.value">
1818

1919
<template v-if="isCustomComponent">
2020
<component :value="query.value" @input="updateQuery" :is="rule.component"></component>

0 commit comments

Comments
 (0)