Closed
Description
Is your feature request related to a problem? Please describe...
Need a b-form-tag without close button for mandatory tag but not totally disabled because I need working popover on this tag (or clickable tag).
Describe the solution you'd like
Just need a removeCloseButton=true (or mandatory=true or closable=false) property on b-form-tag.
Describe alternatives you've considered
I use this bad solution that generate the close button and hide it :
<b-form-tag class="hide-close">MANDATORY_TAG</b-form-tag>
.hide-close button.close {
display: none;
}
I said bad solution because it build a useless html close button.
Thanks