From bd01d44be5d9837fd0ca02f985c80867815a466e Mon Sep 17 00:00:00 2001 From: OdooSky v3 Date: Sat, 9 May 2026 02:00:53 +0200 Subject: [PATCH] fix(tk_construction_management): add name attribute to element Odoo 18 SettingsFormCompiler.compileApp reads el.getAttribute("name") and passes it to toStringExpression(). Without the name attribute the result is null -> null.replaceAll(...) -> TypeError -> Owl lifecycle crash, Settings page renders white. Old data-key="..." attribute is no longer recognized. Add name="tk_construction_management" alongside data-key for backward compat. --- addons/tk_construction_management/views/res_config_views.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/tk_construction_management/views/res_config_views.xml b/addons/tk_construction_management/views/res_config_views.xml index 9088383..83145e5 100644 --- a/addons/tk_construction_management/views/res_config_views.xml +++ b/addons/tk_construction_management/views/res_config_views.xml @@ -9,7 +9,7 @@ + data-key="tk_construction_management" name="tk_construction_management">

Sequences