Actions
Bug #3901
closedNode management>Groups screen CSS is broken when opening a group
Status:
Released
Priority:
1 (highest)
Assignee:
Category:
Web - Nodes & inventories
Target version:
Pull Request:
Severity:
UX impact:
User visibility:
Effort required:
Priority:
Name check:
Fix check:
Regression:
Description
Since #3842, the display of group page is broken.
This is due to bad merge made when backporting this bug from 2.4 to 2.6 in NodeGroupForm.scala (line 133)
- JsRaw("""$('#%1$s').button() ; $('#%1$s').button("option", "disabled", %2$s);""".format(saveButtonId, searchStatus)) + JsRaw("""$('#%s').button("option", "disabled", %s);""".format(saveButtonId, searchStatus))
The first button function call is needed in 2.6, and was wrongly removed.
The page is fully functionnal (all buttons are working, the group tree still works), but the display is very ugly => group tree, node display table are not correctly displayed,
Going back to the previous line fixes everything
Actions