Skip to content

Commit

Permalink
Merge 80782db into 62a2bda
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnny Mijnhout committed Jul 19, 2018
2 parents 62a2bda + 80782db commit 3ff10a8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

Always reference the ticket number at the end of the issue description.

## Pending

### Fixed

- get_actions: formaction dictionary was updated directly as class attribute

## 1.3.1 (2018-07-03)

Expand Down
2 changes: 1 addition & 1 deletion arctic/mixins.py
Expand Up @@ -188,7 +188,7 @@ def get_actions(self): # noqa: C901
if action[2].get('style'):
allowed_action['custom_style'] = True
if action[2].get('form_action'):
action[2]['form_action'] = self.in_modal(
allowed_action['form_action'] = self.in_modal(
reverse_url(action[2]['form_action'], obj))
allowed_action.update(action[2])

Expand Down

0 comments on commit 3ff10a8

Please sign in to comment.