Skip to content

Commit

Permalink
fix: allow popus in notification iframes
Browse files Browse the repository at this point in the history
This is to allow is to allow users to open pages (like bruno downloads) from the app
  • Loading branch information
helloanoop committed Feb 14, 2025
1 parent f8b4a0b commit dfb0b1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/bruno-app/src/components/Notifications/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ const Notifications = () => {
</div>
<iframe
src={`data:text/html,${getSanitizedDescription(selectedNotification?.description)}`}
sandbox=""
sandbox="allow-popups"
style={{ width: '100%', height: '100%' }}
></iframe>
</div>
Expand Down

0 comments on commit dfb0b1b

Please sign in to comment.