@sapui5/sap.fe.plugins.managecache 1.124.2 → 1.124.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/sap/fe/plugins/managecache/.library +1 -1
- package/src/sap/fe/plugins/managecache/comp/i18n/messagebundle.properties +8 -4
- package/src/sap/fe/plugins/managecache/comp/manifest.json +1 -1
- package/src/sap/fe/plugins/managecache/comp/view/settings.view.xml +1 -1
- package/src/sap/fe/plugins/managecache/library.js +1 -1
package/package.json
CHANGED
|
@@ -8,10 +8,14 @@ description=Request Batch Setting
|
|
|
8
8
|
# UI Texte for User Activities dialog (fallback)
|
|
9
9
|
T_GROUP=User Activities
|
|
10
10
|
# UI Texte within User Activities dialog
|
|
11
|
-
T_CACHE_INFORMATION_MSG=Define the expiration in days of the batch cache on the browser side
|
|
12
|
-
This cache will be used to optimize
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
T_CACHE_INFORMATION_MSG=Define the expiration in days of the batch cache on the browser side.\n\
|
|
12
|
+
This cache will be used to optimize opening of the application.\n\
|
|
13
|
+
\n\
|
|
14
|
+
Only requested parameters not marked as sensitive are stored in this cache, and no query results are stored.\n\
|
|
15
|
+
Hence, sensitive data is not stored in this cache.\n\
|
|
16
|
+
\n\
|
|
17
|
+
It is recommended to set the expiration between 0 and 360 days.\n\
|
|
18
|
+
You can clear the cache by using the Clear Batch Cache button.
|
|
15
19
|
T_EXPIRY=Expiration:
|
|
16
20
|
T_DAYS=Days
|
|
17
21
|
B_CLEANUP_CACHE=Clear Batch cache
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
controllerName="sap.fe.plugins.managecache.comp.controller.settings"
|
|
6
6
|
xmlns="sap.m"
|
|
7
7
|
>
|
|
8
|
-
<f:SimpleForm id="userActivitiesForm" layout="ResponsiveGridLayout"
|
|
8
|
+
<f:SimpleForm id="userActivitiesForm" layout="ResponsiveGridLayout">
|
|
9
9
|
<f:content>
|
|
10
10
|
<HBox class="sapUiTinyMargin" justifyContent="SpaceBetween" alignItems="Center">
|
|
11
11
|
<VBox>
|
|
@@ -24,7 +24,7 @@ sap.ui.define(["sap/ui/core/Core", "sap/ui/core/XMLTemplateProcessor", "sap/ui/c
|
|
|
24
24
|
controls: [],
|
|
25
25
|
elements: [],
|
|
26
26
|
// eslint-disable-next-line no-template-curly-in-string
|
|
27
|
-
version: "1.124.
|
|
27
|
+
version: "1.124.3",
|
|
28
28
|
noLibraryCSS: true
|
|
29
29
|
});
|
|
30
30
|
return thisLib;
|