Skip to content

Commit

Permalink
Change ref name to simplify access.
Browse files Browse the repository at this point in the history
Based on PR review comments ( galaxyproject#9151 (comment) ).
  • Loading branch information
jmchilton committed Apr 20, 2020
1 parent 404b28d commit 4510724
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/galaxy/scripts/components/Workflow/Run/WorkflowRun.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</wait-button>
</div>
<workflow-run-form
ref="run-form"
ref="runform"
:model="model"
:setRunButtonStatus="setRunButtonStatus"
@submissionSuccess="handleInvocations"
Expand Down Expand Up @@ -95,7 +95,7 @@ export default {
},
methods: {
execute() {
this.$refs["run-form"].execute();
this.$refs.runform.execute();
},
setRunButtonStatus(enabled, waitText, percentage) {
this.runButtonEnabled = enabled;
Expand Down

0 comments on commit 4510724

Please sign in to comment.