Skip to content

Commit

Permalink
Align size of account's verified contract table and contract table.
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Viénot <[email protected]>
  • Loading branch information
svienot committed Feb 15, 2024
1 parent 70978f0 commit 492239e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/account/AccountVerifiedContractsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
:data="transactions"
paginated
:per-page="perPage"
:narrowed="true"
@cell-click="handleClick"

:hoverable="true"
Expand Down Expand Up @@ -91,7 +92,7 @@ export default defineComponent({
},

setup(props) {
const perPage = 15
const perPage = 10
const transactions = computed(() => props.contractsLookup.entity?.value ?? [])
onMounted( () => props.contractsLookup.mount())
onBeforeUnmount(() => props.contractsLookup.unmount())
Expand Down

0 comments on commit 492239e

Please sign in to comment.