We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6541f87 + ef803e1 commit b5f21e2Copy full SHA for b5f21e2
resources/js/tasks/components/TasksList.vue
@@ -535,7 +535,12 @@ export default {
535
},
536
getTypeColumnFilter(value) {
537
let type = "Field";
538
- if (value === "case_number" || value === "case_title") {
+ //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") {
544
type = "Relationship";
545
}
546
if (value === "process") {
0 commit comments