diff --git a/frontend/src/components/ListView.vue b/frontend/src/components/ListView.vue index 87ed48b1..23702deb 100644 --- a/frontend/src/components/ListView.vue +++ b/frontend/src/components/ListView.vue @@ -66,7 +66,7 @@ class="flex items-center space-x-2.5" :class="[column.size, column.align]" > -
+
-
+
diff --git a/frontend/src/pages/Contacts.vue b/frontend/src/pages/Contacts.vue index a650756d..f9ec6676 100644 --- a/frontend/src/pages/Contacts.vue +++ b/frontend/src/pages/Contacts.vue @@ -24,7 +24,7 @@ const columns = [ { label: 'Full name', key: 'full_name', - type: 'user', + type: 'avatar', size: 'w-44', }, { diff --git a/frontend/src/pages/Leads.vue b/frontend/src/pages/Leads.vue index 6a9a1174..db7e8ea5 100644 --- a/frontend/src/pages/Leads.vue +++ b/frontend/src/pages/Leads.vue @@ -38,7 +38,7 @@ const columns = [ { label: 'Name', key: 'lead_name', - type: 'user', + type: 'avatar', size: 'w-44', }, { @@ -49,7 +49,7 @@ const columns = [ }, { label: 'Status', - key: 'status', + key: 'indicator', type: 'status', size: 'w-44', }, @@ -68,7 +68,7 @@ const columns = [ { label: 'Lead owner', key: 'lead_owner', - type: 'user', + type: 'avatar', size: 'w-44', }, ]