Skip to content

1.5.3

Compare
Choose a tag to compare
@javiereguiluz javiereguiluz released this 26 May 06:52

This is a minor release which only contains one significant change in the form of a minor BC break: The css option has been renamed to css_class.

Before:

easy_admin:
    actions:
        # ...
            - { name: 'edit', class: 'danger' }
    entities:
        # ...
        fields:
            - { property: 'id', class: 'col-md-12' }

After:

easy_admin:
    actions:
        # ...
            - { name: 'edit', css_class: 'danger' }
    entities:
        # ...
        fields:
            - { property: 'id', css_class: 'col-md-12' }