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
|
||||
:columns="columns"
|
||||
: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 }">
|
||||
<QTd
|
||||
|
@ -127,6 +131,14 @@ onMounted(async () => {
|
|||
</div>
|
||||
</template>
|
||||
|
||||
<style lang="scss">
|
||||
.invoices-table {
|
||||
.scroll {
|
||||
overflow: hidden !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<i18n lang="yaml">
|
||||
en-US:
|
||||
noInvoicesFound: No invoices found
|
||||
|
|
Loading…
Reference in New Issue