loadMore++"
+ @columnWidthUpdated="() => triggerResize++"
@updatePageCount="(count) => (updatedPageCount = count)"
/>
@@ -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(() => {