Skip to content

Commit

Permalink
fix: resize column width
Browse files Browse the repository at this point in the history
  • Loading branch information
shariquerik committed Sep 1, 2023
1 parent e1d2500 commit bb2970c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions frontend/src/pages/Deals.vue
Original file line number Diff line number Diff line change
Expand Up @@ -142,13 +142,13 @@ const columns = [
label: 'Organization',
key: 'organization_name',
type: 'logo',
size: 'w-48',
size: 'w-40',
},
{
label: 'Amount',
key: 'annual_revenue',
type: 'currency',
size: 'w-24',
size: 'w-32',
},
{
label: 'Status',
Expand All @@ -166,7 +166,7 @@ const columns = [
label: 'Mobile no',
key: 'mobile_no',
type: 'phone',
size: 'w-36',
size: 'w-40',
},
{
label: 'Lead owner',
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/pages/Leads.vue
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ const columns = [
label: 'Name',
key: 'lead_name',
type: 'avatar',
size: 'w-48',
size: 'w-44',
},
{
label: 'Organization',
Expand All @@ -171,7 +171,7 @@ const columns = [
label: 'Mobile no',
key: 'mobile_no',
type: 'phone',
size: 'w-36',
size: 'w-40',
},
{
label: 'Lead owner',
Expand Down

0 comments on commit bb2970c

Please sign in to comment.