Skip to content

Commit

Permalink
HRM-240: Fixed update action error in dev mode (#7777)
Browse files Browse the repository at this point in the history
  • Loading branch information
vadikdev authored and SergeyZ committed Feb 21, 2017
1 parent c6b3598 commit 7d549b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
'entity': entity|default(form.vars.value),
'entity_class': audit_entity_class|default(null),
'id': audit_entity_id,
'title': audit_title|default(form.vars.value.__toString is defined ? form.vars.value : null),
'title': audit_title|default(form.vars.value.__toString is defined ? form.vars.value.__toString : null),
'audit_path': audit_path|default('oro_dataaudit_history'),
'audit_show_change_history': audit_show_change_history|default(false)
} %}
Expand Down

0 comments on commit 7d549b3

Please sign in to comment.