Skip to content

Commit

Permalink
fix: can not open fax link issue (#838)
Browse files Browse the repository at this point in the history
  • Loading branch information
embbnux authored Jun 25, 2024
1 parent fbda7fc commit 7b3706c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/UpcomingMeetingList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function MeetingItem(props) {
icon: InfoBorder,
title: i18n.getString('details', currentLocale),
onClick: () => {
window.open(editEventUrl)
window.open(editEventUrl);
},
disabled: false,
}];
Expand Down
1 change: 1 addition & 0 deletions src/lib/Adapter/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ class Adapter extends AdapterCore {
if (isSafari()) {
sandboxAttributes = sandboxAttributes.replace(' allow-downloads', '');
}
sandboxAttributes = `${sandboxAttributes} allow-popups-to-escape-sandbox`;
return `
<header class="${this._styles.header}" draggable="false">
<div class="${this._styles.presence} ${this._styles.NoPresence}">
Expand Down

0 comments on commit 7b3706c

Please sign in to comment.