Skip to content

Commit

Permalink
Fix: Opponent selector freezes the game
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamas Cseh committed Apr 9, 2021
1 parent 442f1b3 commit 1444f5b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## [Unreleased]
## Fixed
- Opponent selector freezes the game

## [3.1.1]
## Fixed
- Multiple quit button at the navbar
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ export class SessionsHandlerComponent implements OnInit {
li.classList.add('selected');
}

li.addEventListener('click', () => {
li.onclick = () => {
setTimeout(() => {
this.loadCurrentFilter();
}, 200);
});
};
});
}, 0);
});
Expand Down

0 comments on commit 1444f5b

Please sign in to comment.