We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I use prepend-html on my b-input-group it does not show any prepended content. However prependHTML does work.
prepend-html
b-input-group
prependHTML
Does work:
<b-input-group size="sm" :prependHTML="getPrependHTML('Title')"> <b-input v-model="title" type="text" /> </b-input-group>
Does not work:
<b-input-group size="sm" :prepend-html="getPrependHTML('Title')"> <b-input v-model="title" type="text" /> </b-input-group>
The function:
getPrependHTML(value) { if (this.required) { return `${value} <h6 class="red inline mb-0">*</h6>`; } return value; },
prepend-html as described in the docs should work.
Libraries:
The text was updated successfully, but these errors were encountered:
I think I may know the issue... the series of capitals for HTML. Vue is probably making it prepend-h-t-m-l.
HTML
prepend-h-t-m-l
Sorry, something went wrong.
append-html
fix(b-input-group): fix kebab-case prop names for prepend-html and …
e48d3dc
…`append-html` (fixes #3565) (#3567)
Version 2.0.0-rc.25 has been released.
Successfully merging a pull request may close this issue.
Describe the bug
If I use
prepend-html
on myb-input-group
it does not show any prepended content. HoweverprependHTML
does work.Steps to reproduce the bug
Does work:
Does not work:
The function:
Expected behavior
prepend-html
as described in the docs should work.Versions
Libraries:
The text was updated successfully, but these errors were encountered: