eslint autofixes for vuetify 2

This commit is contained in:
2019-10-01 23:19:40 -07:00
parent e6e060da80
commit 29cf8b8739
18 changed files with 215 additions and 206 deletions

View File

@ -10,7 +10,7 @@
autofocus
class="headline font-weight-medium"
height="30px"
></v-text-field>
/>
</v-col>
</v-row>
@ -22,7 +22,8 @@
item-value="id"
item-text="name"
:rules="[rules.required]"
label="Season"></v-select>
label="Season"
/>
</v-col>
<v-col cols="4">
<v-select
@ -33,7 +34,7 @@
:rules="[rules.required]"
label="Region"
class="pl-4"
></v-select>
/>
</v-col>
</v-row>
@ -45,7 +46,7 @@
label="Email"
hint="Get notified when the catalog PDF is done"
persistent-hint
></v-text-field>
/>
</v-col>
</v-row>
@ -54,19 +55,19 @@
<v-checkbox
v-model="isPublic"
label="Public"
></v-checkbox>
/>
</v-col>
<v-col cols="4">
<v-checkbox v-model="prices" label="Show prices"></v-checkbox>
<v-checkbox v-model="prices" label="Show prices"/>
</v-col>
</v-row>
<v-row>
<v-col cols="4" v-if="isAdmin">
<v-checkbox v-model="utility" label="Is Utility?"></v-checkbox>
<v-col v-if="isAdmin" cols="4">
<v-checkbox v-model="utility" label="Is Utility?"/>
</v-col>
<v-col cols="4" v-if="isAdmin">
<v-checkbox v-model="master" label="Region master"></v-checkbox>
<v-col v-if="isAdmin" cols="4">
<v-checkbox v-model="master" label="Region master"/>
</v-col>
</v-row>