We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f089940 commit d67ab0dCopy full SHA for d67ab0d
src/index.ts
@@ -4,7 +4,7 @@ export default class LaunchpadUtils {
4
if (typeof window !== 'undefined' && window.hasOwnProperty('sap')) {
5
// @ts-ignore
6
sap.ushell.Container.getServiceAsync("CrossApplicationNavigation").then(function(oService){
7
- let hash =
+ const hash =
8
(oService &&
9
oService.hrefForExternal({
10
target: {
@@ -13,7 +13,7 @@ export default class LaunchpadUtils {
13
},
14
params: oParams,
15
})) || "";
16
- let sintent = "#" + sSemObject + "=" + sAction;
+ const sintent = "#" + sSemObject + "=" + sAction;
17
18
oService.isIntentSupported([sintent]).done(
19
function (olntentSupported: object) {
0 commit comments