Skip to content

Commit

Permalink
Merge pull request #1238 from eclipse-pass/russ-789-fix-abort-error
Browse files Browse the repository at this point in the history
Fix abort error
  • Loading branch information
rpoet-jh authored Oct 25, 2023
2 parents 5f9147e + 9a60250 commit 5f8de0c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/components/workflow-files/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,6 @@ export default class WorkflowFiles extends Component {

@action
cancel() {
this.abort();
this.args.abort();
}
}
2 changes: 1 addition & 1 deletion app/components/workflow-grants/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,6 @@ export default class WorkflowGrants extends Component {

@action
abortSubmission() {
this.abort();
this.args.abort();
}
}
2 changes: 1 addition & 1 deletion app/templates/submissions/new/policies.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
@publication={{this.publication}}
@next={{action "loadNext"}}
@back={{action "loadPrevious"}}
abort={{action "abort"}}
@abort={{action "abort"}}
/>
</WorkflowWrapper>

0 comments on commit 5f8de0c

Please sign in to comment.