-
Notifications
You must be signed in to change notification settings - Fork 145
Open
Labels
Description
This is a (multiple allowed):
-
bug
-
enhancement
-
feature-discussion (RFC)
-
BootstrapUI Version: 1.4
What you did
Updated from 0.3 to 1.4.
Expected Behavior
That the horizontal form text inputs display as before.
See the Bootstrap docs as well https://getbootstrap.com/docs/3.4/css/#forms-inline
<form class="form-inline">
<div class="form-group">
<label for="exampleInputName2">Name</label>
<input type="text" class="form-control" id="exampleInputName2" placeholder="Jane Doe">
</div>
<div class="form-group">
<label for="exampleInputEmail2">Email</label>
<input type="email" class="form-control" id="exampleInputEmail2" placeholder="[email protected]">
</div>
<button type="submit" class="btn btn-default">Send invitation</button>
</form>Actual Behavior
They're missing the div container. Also something is wrong with the labels, I've just noticed this.
The cause of the problem is this commit. When I revert it everything is fine:



