forked from verdnatura/salix-front
Merge pull request 'HOTFIX remove full-height class' (!631) from hotfix_workerTimeControl_style into master
Reviewed-on: verdnatura/salix-front#631 Reviewed-by: Javi Gallego <jgallego@verdnatura.es>
This commit is contained in:
commit
7e3c5a9278
|
@ -123,7 +123,7 @@ async function search() {
|
||||||
<QForm @submit="search" id="searchbarForm">
|
<QForm @submit="search" id="searchbarForm">
|
||||||
<VnInput
|
<VnInput
|
||||||
id="searchbar"
|
id="searchbar"
|
||||||
v-model="searchText"
|
v-model.trim="searchText"
|
||||||
:placeholder="t(props.label)"
|
:placeholder="t(props.label)"
|
||||||
dense
|
dense
|
||||||
standout
|
standout
|
||||||
|
|
|
@ -83,6 +83,8 @@ const openCreateModal = () => createTrackingDialogRef.value.show();
|
||||||
:filter="paginateFilter"
|
:filter="paginateFilter"
|
||||||
url="TicketTrackings"
|
url="TicketTrackings"
|
||||||
auto-load
|
auto-load
|
||||||
|
order="created DESC"
|
||||||
|
:limit="0"
|
||||||
>
|
>
|
||||||
<template #body="{ rows }">
|
<template #body="{ rows }">
|
||||||
<QTable
|
<QTable
|
||||||
|
|
|
@ -549,7 +549,7 @@ onMounted(async () => {
|
||||||
:key="index"
|
:key="index"
|
||||||
style="padding: 20px 16px !important"
|
style="padding: 20px 16px !important"
|
||||||
>
|
>
|
||||||
<div class="full-height full-width column items-center">
|
<div class="full-width column items-center">
|
||||||
<WorkerTimeHourChip
|
<WorkerTimeHourChip
|
||||||
v-for="(hour, ind) in day.dayData?.hours"
|
v-for="(hour, ind) in day.dayData?.hours"
|
||||||
:key="ind"
|
:key="ind"
|
||||||
|
|
Loading…
Reference in New Issue