mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-20 15:29:28 +01:00
feat(fe): task run checkboxes
This commit is contained in:
parent
f8d8b36fd3
commit
96e40b7e7e
@ -111,22 +111,27 @@ Example:
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<v-row no-gutters>
|
<v-row no-gutters class="mt-6">
|
||||||
<v-col>
|
<v-col cols="12" sm="6">
|
||||||
<v-checkbox
|
<v-checkbox class="mt-0" v-model="item.debug">
|
||||||
v-model="item.debug"
|
<template v-slot:label>
|
||||||
label="Debug"
|
<div class="text-no-wrap">Debug <code>--vvvv</code></div>
|
||||||
></v-checkbox>
|
</template>
|
||||||
|
</v-checkbox>
|
||||||
</v-col>
|
</v-col>
|
||||||
<v-col>
|
<v-col cols="12" sm="6">
|
||||||
<v-checkbox
|
<v-checkbox class="mt-0" v-model="item.dry_run">
|
||||||
v-model="item.dry_run"
|
<template v-slot:label>
|
||||||
label="Dry Run"
|
<div class="text-no-wrap">Dry Run <code>--check</code></div>
|
||||||
></v-checkbox>
|
</template>
|
||||||
<v-checkbox
|
</v-checkbox>
|
||||||
v-model="item.diff"
|
</v-col>
|
||||||
label="Diff Mode"
|
<v-col cols="12" sm="6">
|
||||||
></v-checkbox>
|
<v-checkbox class="mt-0" v-model="item.diff">
|
||||||
|
<template v-slot:label>
|
||||||
|
<div class="text-no-wrap">Diff <code>--diff</code></div>
|
||||||
|
</template>
|
||||||
|
</v-checkbox>
|
||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user