Skip to content

Commit

Permalink
wip: switch back to old naming [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
sekwah41 committed Aug 30, 2024
1 parent 2ad6caa commit 22f74f6
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/forms/BValidatedInputGroupFormInput.vue
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<template>
<Field
<field
:vid="id"
:name="label"
:rules="rules"
:mode="mode"
v-slot="{ errors, valid }"
>
<BFormGroup :id="id" :label="label" :label-for="`${id}-input`">
<BInputGroup :class="inputGroupSize">
<b-form-group :id="id" :label="label" :label-for="`${id}-input`">
<b-input-group :class="inputGroupSize">
<template #prepend v-if="icon"
><BInputGroupText><i :class="icon"></i></BInputGroupText
></template>
<BFormInput
<b-form-input
:id="`${id}-input`"
:type="type"
:class="inputClasses"
Expand All @@ -23,15 +23,15 @@
v-on="inputListeners"
/>
<template #prepend v-if="tooltip"
><BInputGroupText v-b-tooltip.hover :title="tooltip"
><i class="cui-info font-lg"></i></BInputGroupText
><b-input-group-text v-b-tooltip.hover="{title: tooltip}"
><i class="cui-info font-lg"></i></b-input-group-text
></template>
</BInputGroup>
<BFormInvalidFeedback :state="errorHandlingMethod(errors, valid)">
</b-input-group>
<b-form-invalid-feedback :state="errorHandlingMethod(errors, valid)">
{{ errors[0] }}
</BFormInvalidFeedback>
</BFormGroup>
</Field>
</b-form-invalid-feedback>
</b-form-group>
</field>
</template>

<script>
Expand Down

0 comments on commit 22f74f6

Please sign in to comment.