fix: some minor changes

This commit is contained in:
yogesh_gohil
2021-12-01 17:53:26 +05:30
parent e16e4c6d52
commit cfc7e2231c
5 changed files with 40 additions and 45 deletions

View File

@ -23,9 +23,11 @@
@click.stop
>
<div class="flex relative justify-between mb-2">
<label class="flex-1 text-base font-medium text-left text-gray-900">
{{ selectedCustomer.name }}
</label>
<BaseText
:text="selectedCustomer.name"
:length="30"
class="flex-1 text-base font-medium text-left text-gray-900"
/>
<div class="flex">
<a
class="

View File

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

View File

@ -197,10 +197,7 @@
</template>
<template #cell-name="{ row }">
<BaseText
:text="row.data.customer.name"
:length="30"
/>
<BaseText :text="row.data.customer.name" :length="30" />
</template>
<template #cell-status="{ row }">

View File

@ -194,20 +194,20 @@
<!-- Customer -->
<template #cell-customer="{ row }">
<router-link
:to="{ path: `recurring-invoices/${row.data.id}/view` }"
>
<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 }}
</BaseText>
/>
<BaseText
:text="row.data.customer.contact_name ? row.data.customer.contact_name: ''"
:text="
row.data.customer.contact_name
? row.data.customer.contact_name
: ''
"
:length="30"
tag="span"
class="text-xs text-gray-400"