Skip to content

Commit 3f9026f

Browse files
committed
.
1 parent a1b75b2 commit 3f9026f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hwproj.front/src/components/Courses/StudentStats.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ const StudentStats: React.FC<IStudentStatsProps> = (props) => {
6666

6767
useEffect(() => {
6868
const keyDownHandler = (event: KeyboardEvent) => {
69-
if (!!document.fullscreenElement) return
69+
if (document.fullscreenElement) return
7070
if (event.ctrlKey || event.altKey) return
7171
if (searched && event.key === "Escape") {
7272
setSearched({searched: ""});

0 commit comments

Comments
 (0)