form-control class on form elements

Any reason why this class isn't applied by default?

Should be on each according to Bootstrap docs.

It looks like to me that it will automatically add that class when the element is placed inside a FORM.

I did the following.

Dragged components: (using the Overview widget)

Form Group - Field Label - Text Input (No class)

<div class="form-group">
    <label class="control-label">Label</label>
    <input type="text">
</div>

Dragged in FORM, then dragged Form Group and it's children into the FORM and it auto added the class=form-control to the Text Input

<form>
    <div class="form-group">
        <label class="control-label">Label</label>
        <input type="text" class="form-control">
    </div>
</form>

Saj