From 29d86e64c3a9093948f346d6564e826f7abbb21b 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 14:49:28 +0200 Subject: [PATCH] Update using-component-configuration-c264d66.md 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"); } - }); + }; }); ```