review fixes

This commit is contained in:
p0lycarpio 2025-06-28 13:13:38 +00:00
commit d494b38951
3 changed files with 5 additions and 4 deletions

View file

@ -28,8 +28,8 @@
</template> </template>
<v-list-item <v-list-item
density="compact" density="compact"
@click.stop="toggleChecked(index)"
class="pa-0" class="pa-0"
@click.stop="toggleChecked(index)"
> >
<template #prepend> <template #prepend>
<v-checkbox <v-checkbox

View file

@ -19,7 +19,8 @@
v-model="email" v-model="email"
:prepend-inner-icon="$globals.icons.email" :prepend-inner-icon="$globals.icons.email"
variant="solo-filled" variant="solo-filled"
flat autofocus flat
autofocus
name="login" name="login"
:label="$t('user.email')" :label="$t('user.email')"
type="text" type="text"

View file

@ -15,7 +15,7 @@
</template> </template>
{{ $t('migration.recipe-data-migrations-explanation') }} {{ $t('migration.recipe-data-migrations-explanation') }}
</BasePageTitle> </BasePageTitle>
<v-container class="px-0"> <v-container :class="$vuetify.display.smAndDown ? 'px-0': ''">
<BaseCardSectionTitle :title="$t('migration.new-migration')" /> <BaseCardSectionTitle :title="$t('migration.new-migration')" />
<v-card <v-card
variant="outlined" variant="outlined"
@ -84,7 +84,7 @@
</v-card-actions> </v-card-actions>
</v-card> </v-card>
</v-container> </v-container>
<v-container class="px-0"> <v-container class="$vuetify.display.smAndDown ? 'px-0': ''">
<BaseCardSectionTitle :title="$t('migration.previous-migrations')" /> <BaseCardSectionTitle :title="$t('migration.previous-migrations')" />
<ReportTable <ReportTable
:items="reports" :items="reports"