Skip to content

Commit b5f21e2

Browse files
authored
Merge pull request #6125 from ProcessMaker/bugfix/FOUR-13415
FOUR-13415 Special Characters does not work correctly in Tasks page
2 parents 6541f87 + ef803e1 commit b5f21e2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

resources/js/tasks/components/TasksList.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,12 @@ export default {
535535
},
536536
getTypeColumnFilter(value) {
537537
let type = "Field";
538-
if (value === "case_number" || value === "case_title") {
538+
//The inclusion of the alias in the comparison is necessary to ensure the correct
539+
//type is obtained when the column has been modified by the method getAliasColumnForFilter().
540+
if (value === "case_number" ||
541+
value === "case_title" ||
542+
value === "processRequest.case_number" ||
543+
value === "processRequest.case_title") {
539544
type = "Relationship";
540545
}
541546
if (value === "process") {

0 commit comments

Comments
 (0)