From 1bd99fb751ad4abdfd8940855b90280fb0c0f769 Mon Sep 17 00:00:00 2001 From: Florian Vogt Date: Mon, 23 Dec 2024 11:24:55 +0100 Subject: [PATCH 1/2] fix(steps/09/README.md): Correct term ComponentContainer and add missing convention --- steps/09/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/steps/09/README.md b/steps/09/README.md index 9bc94ba0..58e12e53 100644 --- a/steps/09/README.md +++ b/steps/09/README.md @@ -127,7 +127,7 @@ We'll replace the view with a UI component. To do this, we use a control called - For better loading performance, we set the `async` property to `true`. This allows the component and its dependencies to load in the background without blocking other parts of the application. -Finally, we position our newly created ComponentController control within the HTML element with the id `content`. +Finally, we position our newly created `ComponentContainer` control within the HTML element with the id `content`. ```ts import ComponentContainer from "sap/ui/core/ComponentContainer"; @@ -151,6 +151,8 @@ new ComponentContainer({ - Together with all UI assets of the app, the component is located in the `webapp` folder. +- The `index.html` file is located in the `webapp` folder if it is used productively. +   *** From 02cb7a82d2fa9b11b3a6d7b775cd0af3604c22b3 Mon Sep 17 00:00:00 2001 From: Florian Vogt Date: Mon, 23 Dec 2024 11:25:51 +0100 Subject: [PATCH 2/2] docs(steps/09/README.md): Remove empty line --- steps/09/README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/steps/09/README.md b/steps/09/README.md index 58e12e53..f5afc35d 100644 --- a/steps/09/README.md +++ b/steps/09/README.md @@ -153,8 +153,6 @@ new ComponentContainer({ - The `index.html` file is located in the `webapp` folder if it is used productively. -  - *** **Next:** [Step 10: Descriptor for Applications](../10/README.md "All application-specific configuration settings will now further be put in a separate descriptor file called manifest.json. This clearly separates the application coding from the configuration settings and makes our app even more flexible. For example, all SAP Fiori applications are realized as components and come with a descriptor file in order to be hosted in the SAP Fiori launchpad.")