From 8e32d85ebe98523552d09e042a39e3484de47072 Mon Sep 17 00:00:00 2001 From: Darius Martinkus Date: Thu, 16 Jul 2026 07:58:01 +0300 Subject: [PATCH] [18.0][FIX] project_task_name_with_id: add active field to sharing kanban view The project sharing kanban view inherits the original project_sharing_project_task_view_kanban which does not include the `active` field in its arch. The inherited view references `record.active.raw_value` to toggle strikethrough on inactive tasks, but since `active` is not declared as a field in the view, the record value is undefined at render time, causing: TypeError: Cannot read properties of undefined (reading 'raw_value') Add an invisible `active` field so the value is available in the kanban record data, allowing the t-if conditional to evaluate correctly. --- project_task_name_with_id/views/project_task_views.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/project_task_name_with_id/views/project_task_views.xml b/project_task_name_with_id/views/project_task_views.xml index 5d4aa5cc88..ce6e01b476 100644 --- a/project_task_name_with_id/views/project_task_views.xml +++ b/project_task_name_with_id/views/project_task_views.xml @@ -58,6 +58,7 @@ 1 +