fix : overlap page in view and index pages

This commit is contained in:
Yash
2021-12-01 16:04:55 +05:30
parent f57fa41640
commit e16e4c6d52
13 changed files with 108 additions and 54 deletions

View File

@ -196,17 +196,22 @@
<template #cell-customer="{ row }">
<router-link
:to="{ path: `recurring-invoices/${row.data.id}/view` }"
>
<BaseText
:text="row.data.customer.name"
:length="30"
tag="span"
class="font-medium text-primary-500 flex flex-col"
>
{{ row.data.customer.name }}
<span class="text-xs text-gray-400">
{{
row.data.customer.contact_name
? row.data.customer.contact_name
: ''
}}
</span>
</BaseText>
<BaseText
:text="row.data.customer.contact_name ? row.data.customer.contact_name: ''"
:length="30"
tag="span"
class="text-xs text-gray-400"
/>
</router-link>
</template>