diff --git a/frappe-ui b/frappe-ui index 05e331df..388c8706 160000 --- a/frappe-ui +++ b/frappe-ui @@ -1 +1 @@ -Subproject commit 05e331df9e568a2f3f1d904230333baa1f7cc7be +Subproject commit 388c8706d0f96d918651018ca58d85a56d2bf5cb diff --git a/frontend/src/components/ListViews/CallLogsListView.vue b/frontend/src/components/ListViews/CallLogsListView.vue index 33f0c3c2..60757240 100644 --- a/frontend/src/components/ListViews/CallLogsListView.vue +++ b/frontend/src/components/ListViews/CallLogsListView.vue @@ -12,7 +12,7 @@ }" row-key="name" > - + - + - + - + - + - + @@ -21,6 +22,7 @@ totalCount: callLogs.data.total_count, }" @loadMore="() => loadMore++" + @columnWidthUpdated="() => triggerResize++" @updatePageCount="(count) => (updatedPageCount = count)" @reload="callLogs.reload()" /> @@ -61,6 +63,7 @@ const breadcrumbs = [{ label: 'Call Logs', route: { name: 'Call Logs' } }] // callLogs data is loaded in the ViewControls component const callLogs = ref({}) const loadMore = ref(1) +const triggerResize = ref(1) const updatedPageCount = ref(20) const rows = computed(() => { diff --git a/frontend/src/pages/Contacts.vue b/frontend/src/pages/Contacts.vue index 54d40484..26201c9a 100644 --- a/frontend/src/pages/Contacts.vue +++ b/frontend/src/pages/Contacts.vue @@ -12,6 +12,7 @@ @@ -26,6 +27,7 @@ totalCount: contacts.data.total_count, }" @loadMore="() => loadMore++" + @columnWidthUpdated="() => triggerResize++" @updatePageCount="(count) => (updatedPageCount = count)" @reload="contacts.reload()" /> @@ -85,6 +87,7 @@ const breadcrumbs = computed(() => { // contacts data is loaded in the ViewControls component const contacts = ref({}) const loadMore = ref(1) +const triggerResize = ref(1) const updatedPageCount = ref(20) const rows = computed(() => { diff --git a/frontend/src/pages/EmailTemplates.vue b/frontend/src/pages/EmailTemplates.vue index 75b7c148..019b517f 100644 --- a/frontend/src/pages/EmailTemplates.vue +++ b/frontend/src/pages/EmailTemplates.vue @@ -12,6 +12,7 @@ @@ -26,6 +27,7 @@ totalCount: emailTemplates.data.total_count, }" @loadMore="() => loadMore++" + @columnWidthUpdated="() => triggerResize++" @updatePageCount="(count) => (updatedPageCount = count)" @showEmailTemplate="showEmailTemplate" @reload="emailTemplates.reload()" @@ -65,6 +67,7 @@ const breadcrumbs = [ // emailTemplates data is loaded in the ViewControls component const emailTemplates = ref({}) const loadMore = ref(1) +const triggerResize = ref(1) const updatedPageCount = ref(20) const rows = computed(() => { diff --git a/frontend/src/pages/Leads.vue b/frontend/src/pages/Leads.vue index 887ef884..024fab16 100644 --- a/frontend/src/pages/Leads.vue +++ b/frontend/src/pages/Leads.vue @@ -12,6 +12,7 @@
@@ -85,6 +87,7 @@ const router = useRouter() // leads data is loaded in the ViewControls component const leads = ref({}) const loadMore = ref(1) +const triggerResize = ref(1) const updatedPageCount = ref(20) // Rows diff --git a/frontend/src/pages/Organizations.vue b/frontend/src/pages/Organizations.vue index d05f89a7..4bcaf443 100644 --- a/frontend/src/pages/Organizations.vue +++ b/frontend/src/pages/Organizations.vue @@ -16,6 +16,7 @@ @@ -30,6 +31,7 @@ totalCount: organizations.data.total_count, }" @loadMore="() => loadMore++" + @columnWidthUpdated="() => triggerResize++" @updatePageCount="(count) => (updatedPageCount = count)" @reload="organizations.reload()" /> @@ -91,6 +93,7 @@ const breadcrumbs = computed(() => { // organizations data is loaded in the ViewControls component const organizations = ref({}) const loadMore = ref(1) +const triggerResize = ref(1) const updatedPageCount = ref(20) const rows = computed(() => { diff --git a/frontend/src/pages/Tasks.vue b/frontend/src/pages/Tasks.vue index 70b54ca0..bc3a601a 100644 --- a/frontend/src/pages/Tasks.vue +++ b/frontend/src/pages/Tasks.vue @@ -12,6 +12,7 @@ @@ -26,6 +27,7 @@ totalCount: tasks.data.total_count, }" @loadMore="() => loadMore++" + @columnWidthUpdated="() => triggerResize++" @updatePageCount="(count) => (updatedPageCount = count)" @showTask="showTask" @reload="tasks.reload()" @@ -59,6 +61,7 @@ const { getUser } = usersStore() // tasks data is loaded in the ViewControls component const tasks = ref({}) const loadMore = ref(1) +const triggerResize = ref(1) const updatedPageCount = ref(20) const rows = computed(() => {