fix: table height
This commit is contained in:
parent
5c6f201a99
commit
efb638f8ae
1 changed files with 5 additions and 4 deletions
|
|
@ -1105,8 +1105,8 @@ watch(
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col scroll q-pa-md full-width">
|
||||
<div v-if="userData && userData.total > 0 && !inputSearch">
|
||||
<div class="col scroll q-pa-md full-width full-height">
|
||||
<template v-if="userData && userData.total > 0 && !inputSearch">
|
||||
<q-table
|
||||
flat
|
||||
bordered
|
||||
|
|
@ -1131,7 +1131,8 @@ watch(
|
|||
})
|
||||
"
|
||||
:columns="columns"
|
||||
class="full-width"
|
||||
style="max-height: 100%"
|
||||
class="full-width full-height"
|
||||
card-container-class="q-col-gutter-md"
|
||||
row-key="name"
|
||||
:rows-per-page-options="[0]"
|
||||
|
|
@ -1466,7 +1467,7 @@ watch(
|
|||
</div>
|
||||
</template>
|
||||
</q-table>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<div
|
||||
v-if="userData && userData.total === 0 && !inputSearch"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue