Skip to content

Commit 0a8c8cd

Browse files
authored
fix: correct calling unexisting method (#157)
Call the _setBrowser method, that exist, instead of previously available setBrowser.
1 parent 70bbb9c commit 0a8c8cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/overlay/sap/ui/Device.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ const _setSupport = () => {
601601
}
602602

603603
if (!Device.browser) {
604-
setBrowser();
604+
_setBrowser();
605605
}
606606

607607
Device.support = {};

0 commit comments

Comments
 (0)