From f06f69b76ac8f8ee784f0dfc223d68d16a00d541 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lennert=20Mei=C3=9Fner?= <42579149+CPUCloudCode@users.noreply.github.com> Date: Fri, 27 Sep 2024 15:53:52 +0200 Subject: [PATCH] Update using-component-configuration-c264d66.md (#160) In the file, an unnecessary closing parenthesis was present at the end of the sap.ui.define block. This extra parenthesis could lead to syntax errors or unexpected behavior in the JavaScript execution. Already tested locally with the changes. --- .../using-component-configuration-c264d66.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/08_Extending_SAPUI5_Applications/using-component-configuration-c264d66.md b/docs/08_Extending_SAPUI5_Applications/using-component-configuration-c264d66.md index b13830b8..3f084b27 100644 --- a/docs/08_Extending_SAPUI5_Applications/using-component-configuration-c264d66.md +++ b/docs/08_Extending_SAPUI5_Applications/using-component-configuration-c264d66.md @@ -49,7 +49,7 @@ sap.ui.define([], function() { doSomeCustomAction: function() { alert("this is another customer action"); } - }); + }; }); ```