The release drop down divs were not being closed appropriately which showed adverse reactions on the UI that aligned the "Create project" button with the left edge of the screen without any margins. This fixes these divs which inturn aligns the button appropriately.
Signed-off-by: Awais Belal <[email protected]> --- bitbake/lib/toaster/toastergui/templates/newproject.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitbake/lib/toaster/toastergui/templates/newproject.html b/bitbake/lib/toaster/toastergui/templates/newproject.html index acb614e..bd03bb5 100644 --- a/bitbake/lib/toaster/toastergui/templates/newproject.html +++ b/bitbake/lib/toaster/toastergui/templates/newproject.html @@ -54,12 +54,12 @@ <span class="help-block">{{release.helptext|safe}}</span> </div> {% endfor %} + </div> + </div> {% else %} <input type="hidden" name="projectversion" value="{{releases.0.id}}"/> {% endif %} </div> - </div> - </fieldset> {% endif %} <div class="top-air"> <input type="submit" id="create-project-button" class="btn btn-primary btn-lg" value="Create project"/> -- 2.7.4 -- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
