Very minor display bug

Hey there, just wanted to let you know about a minor display bug in the UI when editing a virtual server. I have attached a screen shot. In configurable settings you can see the the

I poked around a bit and the label seems to have been missed out. Here is what it is currently:

<tr class="ui_form_pair">
<td class="ui_form_value" colspan="1"><select class="ui_select" name="plan" size="1" onchange="select_plan(options[selectedIndex].value)">
<option value="0" selected="">Default Plan</option>
</select>
<input class="ui_checkbox" type="checkbox" name="applyplan" value="1" checked="" id="applyplan_1"> <label for="applyplan_1">Apply limits from new plan if changed</label>
</td>
</tr>

The following is my hack attempt to make it line up, I wasn't sure about the correct label ..

<tr class="ui_form_pair">
<td class="ui_form_label" width="30%"><b>Server configuration limits</b></td> 
<td class="ui_form_value" colspan="1"><select class="ui_select" name="plan" size="1" onchange="select_plan(options[selectedIndex].value)">
<option value="0" selected="">Default Plan</option>
</select>
<input class="ui_checkbox" type="checkbox" name="applyplan" value="1" checked="" id="applyplan_1"> <label for="applyplan_1">Apply limits from new plan if changed</label>
</td>
</tr>

Hope that made sense. Thank you for such a great product and incredible support in the forums.

Status: 
Closed (fixed)

Comments

Thanks - I will fix this in the next release.

Automatically closed -- issue fixed for 2 weeks with no activity.