From ef803e19e9a61041ad6443757431f43034a21d61 Mon Sep 17 00:00:00 2001 From: Roly Gutierrez Date: Wed, 31 Jan 2024 10:16:26 -0400 Subject: [PATCH] FOUR-13415 Special Characters does not work correctly in Tasks page --- resources/js/tasks/components/TasksList.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/resources/js/tasks/components/TasksList.vue b/resources/js/tasks/components/TasksList.vue index 3d41e2a2f6..b6485065d5 100644 --- a/resources/js/tasks/components/TasksList.vue +++ b/resources/js/tasks/components/TasksList.vue @@ -535,7 +535,12 @@ export default { }, getTypeColumnFilter(value) { let type = "Field"; - if (value === "case_number" || value === "case_title") { + //The inclusion of the alias in the comparison is necessary to ensure the correct + //type is obtained when the column has been modified by the method getAliasColumnForFilter(). + if (value === "case_number" || + value === "case_title" || + value === "processRequest.case_number" || + value === "processRequest.case_title") { type = "Relationship"; } if (value === "process") {