forked from verdnatura/hedera-web
hide table aspect in invoices view
This commit is contained in:
parent
3c71c71df1
commit
c4a64bff91
|
@ -90,7 +90,11 @@ onMounted(async () => {
|
||||||
<VnTable
|
<VnTable
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
:rows="invoices"
|
:rows="invoices"
|
||||||
:hide-header="!invoices?.length"
|
hide-header
|
||||||
|
:hide-bottom="!!invoices.length"
|
||||||
|
:pagination="{ rowsPerPage: 0 }"
|
||||||
|
hide-pagination
|
||||||
|
class="invoices-table"
|
||||||
>
|
>
|
||||||
<template #body-cell-hasPdf="{ row }">
|
<template #body-cell-hasPdf="{ row }">
|
||||||
<QTd
|
<QTd
|
||||||
|
@ -127,6 +131,14 @@ onMounted(async () => {
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.invoices-table {
|
||||||
|
.scroll {
|
||||||
|
overflow: hidden !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<i18n lang="yaml">
|
<i18n lang="yaml">
|
||||||
en-US:
|
en-US:
|
||||||
noInvoicesFound: No invoices found
|
noInvoicesFound: No invoices found
|
||||||
|
|
Loading…
Reference in New Issue