Skip to content

Commit

Permalink
custom class selection for lookupinput comp
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaibu committed Jan 17, 2022
1 parent b990462 commit ef4ce62
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vue/src/components/Modals/LookupInput.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<b-form-group class="mb-3">
<b-form-group :class="class_list">
<template #label v-if="show_label">
{{ form.label }}
</template>
Expand Down Expand Up @@ -44,6 +44,7 @@ export default {
return undefined
},
},
class_list: {type: String, default: "mb-3"},
show_label: { type: Boolean, default: true },
clear: { type: Number },
},
Expand Down

0 comments on commit ef4ce62

Please sign in to comment.