From f9f855cd2e8cbd3facc420c96b80bade5e8fc126 Mon Sep 17 00:00:00 2001 From: Enmanuel Otero Montano <83787091+Enmanuel-Otero-Montano@users.noreply.github.com> Date: Thu, 6 Jun 2024 16:27:19 +0000 Subject: [PATCH] [FW][FIX] howtos/javascript_view: fix typo A typo was found. The word "customeKanbanView" is misspelled and should be "customKanbanView", which is the constant exported correctly in the code. Therefore, the corrected line would be: closes odoo/documentation#9676 Forward-port-of: odoo/documentation#9661 Signed-off-by: Antoine Vandevenne (anv) --- content/developer/howtos/javascript_view.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/developer/howtos/javascript_view.rst b/content/developer/howtos/javascript_view.rst index faa784af9..530e51482 100644 --- a/content/developer/howtos/javascript_view.rst +++ b/content/developer/howtos/javascript_view.rst @@ -32,7 +32,7 @@ can be done in a few steps: }; // Register it to the views registry - registry.category("views").add("custom_kanban", customeKanbanView); + registry.category("views").add("custom_kanban", customKanbanView); In our custom kanban, we defined a new template. We can either inherit the kanban controller template and add our template pieces or we can define a completely new template.