From a1f4cc03bc4df556f9a832a91d47f1c3727ab115 Mon Sep 17 00:00:00 2001 From: Kevin Baptiste <kba@odoo.com> Date: Thu, 12 Aug 2021 12:53:17 +0000 Subject: [PATCH] [FIX] project: focus on task name When creating a new task the name field was not automatically focused. closes odoo/odoo#75024 Taskid: 2585999 Signed-off-by: Yannick Tivisse (yti) <yti@odoo.com> --- addons/project/views/project_views.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/project/views/project_views.xml b/addons/project/views/project_views.xml index c4a482ba7b03..862e5fff76da 100644 --- a/addons/project/views/project_views.xml +++ b/addons/project/views/project_views.xml @@ -436,7 +436,7 @@ <div class="oe_title pr-0"> <h1 class="d-flex flex-row justify-content-between"> <field name="priority" widget="priority" class="mr-3"/> - <field name="name" class="o_task_name text-truncate" placeholder="Task Title..."/> + <field name="name" class="o_task_name text-truncate" placeholder="Task Title..." default_focus="1" /> <field name="kanban_state" widget="state_selection" class="ml-auto"/> </h1> </div> -- GitLab