Cause
I see that the app bootstraps OpenUI5 from the CDN without specifying a concrete framework version aka. "default version". E.g. in index.html
:
<script
id="sap-ui-bootstrap"
src="https://openui5.hana.ondemand.com/resources/sap-ui-core.js"
...>
</script>
There have been indeed cache related issues when SAP delivered a new OpenUI5 version (1.107.0) to CDN as the default version a few days ago. This is a recurring problem with the default version of the framework's CDN URL as highlighted in the documentation topic Variant for Bootstrapping from Content Delivery Network:
Default Version
⚠ Caution
The default version is constantly being upgraded and this might have an impact on the stability of your application. Use this version for testing purposes only.
Resolution
When using OpenUI5 from the CDN, add a specific "<major>.<minor>.<patch>"
version, that is still maintained, to the bootstrap URL:
<script id="sap-ui-bootstrap"
src="https://sdk.openui5.org/1.107.1/resources/sap-ui-core.js"
data-sap-ui-async="true"
data-sap-ui-...="..."
></script>
If the app is supposed to run with one of the long-term maintenance versions, bootstrap OpenUI5 with the patch-level independent "<major>.<minor>"
variant aka. "evergreen" version:
<script id="sap-ui-bootstrap"
src="https://sdk.openui5.org/1.108/resources/sap-ui-core.js"
data-sap-ui-async="true"
data-sap-ui-onInit="module:sap/ui/core/ComponentSupport"
data-sap-ui-...="..."
></script>
I highly recommend going through the Read Me First topics.