Skip to content

Commit

Permalink
Make all params in git commands required
Browse files Browse the repository at this point in the history
I hope this does not break anything but it allows to potentially nicely prompting the user for unset param values in actions with immediate:true
  • Loading branch information
phil294 committed Nov 18, 2024
1 parent 7a70695 commit 64edf8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/views/GitInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<div v-for="(param, i) in params" :key="i" class="param">
<label class="row align-center gap-5">
Param ${{ i+1 }}
<input ref="params_input_refs" v-model="params[i]" class="flex-1" onfocus="select()">
<input ref="params_input_refs" v-model="params[i]" required class="flex-1" onfocus="select()">
</label>
</div>
<div class="execute">
Expand Down

0 comments on commit 64edf8e

Please sign in to comment.