We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 479b1c6 commit 6713261Copy full SHA for 6713261
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# web-request-rpc ChangeLog
2
3
+## 3.0.1 - 2025-12-dd
4
+
5
+### Fixed
6
+- Ensure localhost permission can be requested for localhost web apps.
7
8
## 3.0.0 - 2024-07-02
9
10
### Changed
lib/WebAppWindowInlineDialog.js
@@ -59,6 +59,8 @@ export class WebAppWindowInlineDialog extends WebAppWindowDialog {
59
this.iframe = document.createElement('iframe');
60
this.iframe.src = url;
61
this.iframe.scrolling = 'auto';
62
+ // allow web apps to ask for localhost permission
63
+ this.iframe.allow = 'local-network-access';
64
applyStyle(this.iframe, {
65
position: 'fixed',
66
top: 0,
0 commit comments