Skip to content

Commit

Permalink
Update descriptor-manifest-json-74038a5.md
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
wridgeu authored Aug 4, 2024
1 parent fd77764 commit 06ef6f0
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/07_APF/descriptor-manifest-json-74038a5.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
Expand All @@ -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
},
}
}
}
```
Expand Down

0 comments on commit 06ef6f0

Please sign in to comment.