From 4f87967d546c74a0deaba8c3c8e577476db51290 Mon Sep 17 00:00:00 2001 From: Tobi Abiodun Date: Sat, 16 Nov 2024 19:00:26 -0500 Subject: [PATCH] fix(AdminSendBulkSms.vue): refactor phone number appending method (#1300) - Append each valid number individually to formData fix(AdminSendBulkEmail.vue): refactor email appending method - Append each valid email individually to formData fix(OtherOrganizations.vue): update table URL and height styling - Set table URL to '/other_organizations' - Adjust table body height to '40rem' feat(OtherOrganizations.vue): add overdue_count column with navigation - Implement button to navigate to incidents for overdue counts refactor(OtherOrganizations.vue): re-enable columns for organization metrics - Reactivate columns for incidents, cases_reported, cases_claimed, cases_closed, cases_overdue, and last_login ``` --- src/pages/OtherOrganizations.vue | 149 ++++++++++++++----------- src/pages/admin/AdminSendBulkEmail.vue | 5 +- src/pages/admin/AdminSendBulkSms.vue | 5 +- 3 files changed, 89 insertions(+), 70 deletions(-) diff --git a/src/pages/OtherOrganizations.vue b/src/pages/OtherOrganizations.vue index 963b5ffd4..f4c2b0114 100644 --- a/src/pages/OtherOrganizations.vue +++ b/src/pages/OtherOrganizations.vue @@ -40,7 +40,7 @@ ref="table" :columns="columns" :url="tableUrl" - :body-style="{ height: '' }" + :body-style="{ height: '40rem' }" data-testid="testOrganizationsDataTable" class="bg-white border" :query="{ @@ -49,6 +49,23 @@ fields: 'id,name,url,facebook,twitter,type_t', }" > + +