Skip to content

Commit

Permalink
Fix TypeError in finish workflow action #10157
Browse files Browse the repository at this point in the history
Regression in 7cccf96 (unreleased).
  • Loading branch information
jacobtylerwalls committed Oct 19, 2023
1 parent e5a7021 commit 849c9ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arches/app/media/js/viewmodels/workflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ define([
this.finishWorkflow = function() {
if (self.activeStep().hasUnsavedData()) {
self.activeStep().save().then(function() {
this.finishWorkflow();
self.finishWorkflow();
});
return;
}
Expand Down

0 comments on commit 849c9ca

Please sign in to comment.