Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Resolved
-
2.0.0-M6
-
None
Description
When in the application.yml for isis is configured with:
isis: applib: annotation: action-layout: css-class-fa: patterns: - new.*:fa-plus - add.*:fa-plus-square - attach.*:fa-plus-square - create.*:fa-plus
This will not be applied to:
public class ContactsMenu { @Action public class newContact{ public Person act( ...
This workaround works:
public class ContactsMenu { @Action @ActionLayout(cssClassFa = "fa-plus") public class newContact{ public Person act( ...