feat(fe): task run checkboxes

This commit is contained in:
Denis Gukov 2022-10-29 18:32:45 +05:00
parent f8d8b36fd3
commit 96e40b7e7e

View File

@ -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>