This commit is contained in:
Michael Genson 2024-02-23 19:17:08 +00:00
parent d321c69244
commit ae8ea16dab
3 changed files with 4 additions and 3 deletions

View File

@ -24,7 +24,7 @@
{{ $t("general.cancel") }} {{ $t("general.cancel") }}
</v-btn> </v-btn>
<div class="d-flex justify-end" style="width: 100%;"> <div class="d-flex justify-end" style="width: 100%;">
<v-checkbox v-model="showAll" hideDetails :label="$tc('general.show-all')" class="my-auto mr-4" /> <v-checkbox v-model="showAll" hide-details :label="$tc('general.show-all')" class="my-auto mr-4" />
</div> </div>
</template> </template>
</BaseDialog> </BaseDialog>

View File

@ -77,7 +77,8 @@
> >
<v-container> <v-container>
<v-form> <v-form>
<v-select v-model="currentUserId" <v-select
v-model="currentUserId"
:items="allUsers" :items="allUsers"
item-text="fullName" item-text="fullName"
item-value="id" item-value="id"

View File

@ -17,7 +17,7 @@
</BasePageTitle> </BasePageTitle>
<v-container class="d-flex justify-end px-0 pt-0 pb-4"> <v-container class="d-flex justify-end px-0 pt-0 pb-4">
<v-checkbox v-model="showAll" hideDetails :label="$tc('general.show-all')" class="my-auto mr-4" /> <v-checkbox v-model="showAll" hide-details :label="$tc('general.show-all')" class="my-auto mr-4" />
<BaseButton create @click="createDialog = true" /> <BaseButton create @click="createDialog = true" />
</v-container> </v-container>