diff --git a/frontend/src/components/ListViews/CallLogsListView.vue b/frontend/src/components/ListViews/CallLogsListView.vue index 1ccb7202..7807e5f9 100644 --- a/frontend/src/components/ListViews/CallLogsListView.vue +++ b/frontend/src/components/ListViews/CallLogsListView.vue @@ -9,6 +9,7 @@ }), selectable: options.selectable, showTooltip: options.showTooltip, + resizeColumn: options.resizeColumn, }" row-key="name" > @@ -105,6 +106,7 @@ const props = defineProps({ default: () => ({ selectable: true, showTooltip: true, + resizeColumn: false, totalCount: 0, rowCount: 0, }), diff --git a/frontend/src/components/ListViews/ContactsListView.vue b/frontend/src/components/ListViews/ContactsListView.vue index a221b94c..694984e8 100644 --- a/frontend/src/components/ListViews/ContactsListView.vue +++ b/frontend/src/components/ListViews/ContactsListView.vue @@ -10,6 +10,7 @@ }), selectable: options.selectable, showTooltip: options.showTooltip, + resizeColumn: options.resizeColumn, }" row-key="name" > @@ -130,6 +131,7 @@ const props = defineProps({ default: () => ({ selectable: true, showTooltip: true, + resizeColumn: false, totalCount: 0, rowCount: 0, }), diff --git a/frontend/src/components/ListViews/DealsListView.vue b/frontend/src/components/ListViews/DealsListView.vue index 22f1abd9..9f0681f6 100644 --- a/frontend/src/components/ListViews/DealsListView.vue +++ b/frontend/src/components/ListViews/DealsListView.vue @@ -7,6 +7,7 @@ getRowRoute: (row) => ({ name: 'Deal', params: { dealId: row.name } }), selectable: options.selectable, showTooltip: options.showTooltip, + resizeColumn: options.resizeColumn, }" row-key="name" > @@ -166,6 +167,7 @@ const props = defineProps({ default: () => ({ selectable: true, showTooltip: true, + resizeColumn: false, totalCount: 0, rowCount: 0, }), diff --git a/frontend/src/components/ListViews/EmailTemplatesListView.vue b/frontend/src/components/ListViews/EmailTemplatesListView.vue index 3508540f..abfb3252 100644 --- a/frontend/src/components/ListViews/EmailTemplatesListView.vue +++ b/frontend/src/components/ListViews/EmailTemplatesListView.vue @@ -6,6 +6,7 @@ onRowClick: (row) => emit('showEmailTemplate', row.name), selectable: options.selectable, showTooltip: options.showTooltip, + resizeColumn: options.resizeColumn, }" row-key="name" > @@ -121,6 +122,7 @@ const props = defineProps({ default: () => ({ selectable: true, showTooltip: true, + resizeColumn: false, totalCount: 0, rowCount: 0, }), diff --git a/frontend/src/components/ListViews/LeadsListView.vue b/frontend/src/components/ListViews/LeadsListView.vue index d9ea3eec..08722aaa 100644 --- a/frontend/src/components/ListViews/LeadsListView.vue +++ b/frontend/src/components/ListViews/LeadsListView.vue @@ -7,6 +7,7 @@ getRowRoute: (row) => ({ name: 'Lead', params: { leadId: row.name } }), selectable: options.selectable, showTooltip: options.showTooltip, + resizeColumn: options.resizeColumn, }" row-key="name" > @@ -175,6 +176,7 @@ const props = defineProps({ default: () => ({ selectable: true, showTooltip: true, + resizeColumn: false, totalCount: 0, rowCount: 0, }), diff --git a/frontend/src/components/ListViews/OrganizationsListView.vue b/frontend/src/components/ListViews/OrganizationsListView.vue index 863be606..aeb2282e 100644 --- a/frontend/src/components/ListViews/OrganizationsListView.vue +++ b/frontend/src/components/ListViews/OrganizationsListView.vue @@ -9,6 +9,7 @@ }), selectable: options.selectable, showTooltip: options.showTooltip, + resizeColumn: options.resizeColumn, }" row-key="name" > @@ -115,6 +116,7 @@ const props = defineProps({ default: () => ({ selectable: true, showTooltip: true, + resizeColumn: false, totalCount: 0, rowCount: 0, }), diff --git a/frontend/src/components/ListViews/TasksListView.vue b/frontend/src/components/ListViews/TasksListView.vue index 57e42ce2..af294226 100644 --- a/frontend/src/components/ListViews/TasksListView.vue +++ b/frontend/src/components/ListViews/TasksListView.vue @@ -6,6 +6,7 @@ onRowClick: (row) => emit('showTask', row.name), selectable: options.selectable, showTooltip: options.showTooltip, + resizeColumn: options.resizeColumn, }" row-key="name" > @@ -145,6 +146,7 @@ const props = defineProps({ default: () => ({ selectable: true, showTooltip: true, + resizeColumn: false, totalCount: 0, rowCount: 0, }), diff --git a/frontend/src/pages/CallLogs.vue b/frontend/src/pages/CallLogs.vue index 8185e67e..0f640362 100644 --- a/frontend/src/pages/CallLogs.vue +++ b/frontend/src/pages/CallLogs.vue @@ -19,6 +19,7 @@ :columns="callLogs.data.columns" :options="{ showTooltip: false, + resizeColumn: true, rowCount: callLogs.data.row_count, totalCount: callLogs.data.total_count, }" diff --git a/frontend/src/pages/Contacts.vue b/frontend/src/pages/Contacts.vue index a8260c0a..d796900d 100644 --- a/frontend/src/pages/Contacts.vue +++ b/frontend/src/pages/Contacts.vue @@ -24,6 +24,7 @@ :columns="contacts.data.columns" :options="{ showTooltip: false, + resizeColumn: true, rowCount: contacts.data.row_count, totalCount: contacts.data.total_count, }" diff --git a/frontend/src/pages/Deals.vue b/frontend/src/pages/Deals.vue index 8f63f559..59a4b163 100644 --- a/frontend/src/pages/Deals.vue +++ b/frontend/src/pages/Deals.vue @@ -25,6 +25,7 @@ :columns="deals.data.columns" :options="{ showTooltip: false, + resizeColumn: true, rowCount: deals.data.row_count, totalCount: deals.data.total_count, }" diff --git a/frontend/src/pages/EmailTemplates.vue b/frontend/src/pages/EmailTemplates.vue index cbb77a25..3a715e02 100644 --- a/frontend/src/pages/EmailTemplates.vue +++ b/frontend/src/pages/EmailTemplates.vue @@ -24,6 +24,7 @@ :columns="emailTemplates.data.columns" :options="{ showTooltip: false, + resizeColumn: true, rowCount: emailTemplates.data.row_count, totalCount: emailTemplates.data.total_count, }" diff --git a/frontend/src/pages/Leads.vue b/frontend/src/pages/Leads.vue index b2777b25..38118d69 100644 --- a/frontend/src/pages/Leads.vue +++ b/frontend/src/pages/Leads.vue @@ -26,6 +26,7 @@ :columns="leads.data.columns" :options="{ showTooltip: false, + resizeColumn: true, rowCount: leads.data.row_count, totalCount: leads.data.total_count, }" diff --git a/frontend/src/pages/Organizations.vue b/frontend/src/pages/Organizations.vue index 44fb483a..c9a79ba1 100644 --- a/frontend/src/pages/Organizations.vue +++ b/frontend/src/pages/Organizations.vue @@ -28,6 +28,7 @@ :columns="organizations.data.columns" :options="{ showTooltip: false, + resizeColumn: true, rowCount: organizations.data.row_count, totalCount: organizations.data.total_count, }" diff --git a/frontend/src/pages/Tasks.vue b/frontend/src/pages/Tasks.vue index 8c6cd405..4e8b4e39 100644 --- a/frontend/src/pages/Tasks.vue +++ b/frontend/src/pages/Tasks.vue @@ -24,6 +24,7 @@ :columns="tasks.data.columns" :options="{ showTooltip: false, + resizeColumn: true, rowCount: tasks.data.row_count, totalCount: tasks.data.total_count, }"