From 06ef6f047e5dc73b488e4694df7fd9cc9c50ba7e Mon Sep 17 00:00:00 2001 From: Marco Beier Date: Sun, 4 Aug 2024 17:47:01 +0200 Subject: [PATCH] Update descriptor-manifest-json-74038a5.md Minor change to make the example `manifest.json` a valid JSON. I came back to this page a few times to quickly grab the example and test a few things. Might as well make it a proper/valid JSON example to use copy/paste on. --- .../07_APF/descriptor-manifest-json-74038a5.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/07_APF/descriptor-manifest-json-74038a5.md b/docs/07_APF/descriptor-manifest-json-74038a5.md index ce2c66bf..3aac88ea 100644 --- a/docs/07_APF/descriptor-manifest-json-74038a5.md +++ b/docs/07_APF/descriptor-manifest-json-74038a5.md @@ -195,31 +195,31 @@ The `sap.app` namespace also contains the title of the application. This “titl "minUI5Version": "1.38.1", "libs": { "sap.ui.core": { - "minVersion": "1.38.1" + "minVersion": "1.38.1", "lazy" : false }, "sap.ca.ui": { - "minVersion": "1.38.1" + "minVersion": "1.38.1", "lazy" : false }, "sap.m": { - "minVersion": "1.38.1" + "minVersion": "1.38.1", "lazy" : false }, "sap.ui.layout": { - "minVersion": "1.38.1" + "minVersion": "1.38.1", "lazy" : false }, "sap.ushell": { - "minVersion": "1.38.1" + "minVersion": "1.38.1", "lazy" : false }, "sap.apf": { - "minVersion": "1.38.1" + "minVersion": "1.38.1", "lazy" : false }, "sap.viz": { - "minVersion": "1.38.1" + "minVersion": "1.38.1", "lazy" : false } } @@ -236,10 +236,10 @@ The `sap.app` namespace also contains the title of the application. This “titl "type": "sap.ui.model.resource.ResourceModel", "uri": "i18n/texts.properties" } - } + }, "config": { "sapFiori2Adaptation": true - }, + } } } ```