Compare commits

...

1 Commits

Author SHA1 Message Date
Enmanuel Otero Montano a80b75c4a6 [FIX] Customize a view type doc: A typo error was found
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:

X-original-commit: 83db1bdd8d
2024-06-06 17:27:39 +02:00
+1 -1
View File
@@ -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.