Skip to content

Commit

Permalink
Update conference.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
NCPSNetworks authored Jun 21, 2024
1 parent ced05f5 commit d11c9a7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions webapp/src/components/conference/conference.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ export default class Conference extends React.PureComponent<Props, State> {
return Math.max(document.documentElement.clientHeight || 0, window?.innerHeight || 0) - (BORDER_SIZE * 2);
}

escFunction = (event: any) => {
// '27' == escape key
if (event.keyCode === 27) {
this.close();
}
};
// escFunction = (event: any) => {
// // '27' == escape key
// if (event.keyCode === 27) {
// this.close();
// }

Check failure on line 70 in webapp/src/components/conference/conference.tsx

View workflow job for this annotation

GitHub Actions / plugin-ci / lint

Expected indentation of 4 spaces but found 5
// };

preventMessages = (event: MessageEvent) => {
if (!this.props.post || !this.api) {
Expand Down

0 comments on commit d11c9a7

Please sign in to comment.