Skip to content

Commit

Permalink
typo abortable
Browse files Browse the repository at this point in the history
  • Loading branch information
ansibleguy76 committed Jan 11, 2025
1 parent 1b5a36b commit 867c1a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@
</button>
</div>
<!-- abort job button -->
<div class="column" v-if="jobResult.status=='info' && !abortTriggered && (currentForm.abortable || true)">
<div class="column" v-if="jobResult.status=='info' && !abortTriggered && (currentForm.abortable ?? true)">
<button class="button is-fullwidth has-background-warning" @click="abortJob(jobId)">
<span class="icon"><font-awesome-icon icon="times" /></span>
<span>Abort Job</span>
Expand Down

0 comments on commit 867c1a6

Please sign in to comment.