Skip to content

Commit 2c1a99b

Browse files
committed
docs: readme
1 parent 40c7287 commit 2c1a99b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Author: Sven Loesekann
44

55
Technologies: PWA, WebRtc, WebSocket(Frontend, Backend), Angular, Angular-Cli, Angular-Material, Typescript, Spring Boot, Java, Spring Webflux, MongoDB, Maven, Docker
66

7+
[![CodeQL](https://github.com/Angular2Guy/AngularPwaMessenger/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/Angular2Guy/AngularPwaMessenger/actions/workflows/codeql-analysis.yml)
8+
79
## Articles
810
* [Do you need a friend in a Messenger?](https://angular2guy.wordpress.com/2024/03/03/do-you-need-an-ai-friend-in-a-messenger/)
911
* [Multiplayer Bingo Games with Angular and Spring Boot Part1](https://angular2guy.wordpress.com/2023/10/06/multiplayer-bingo-games-with-angular-and-spring-boot-part1/)

frontend/src/angular/src/app/main/main.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ export class MainComponent
151151

152152
openFileuploadDialog(): void {
153153
const dialogRef = this.dialog.open(FileuploadComponent, {
154-
width: "500px",
154+
width: "500px",
155155
data: { receiver: this.selectedContact },
156156
});
157157
dialogRef.afterClosed().subscribe((result) => {
@@ -177,6 +177,8 @@ export class MainComponent
177177
openLoginDialog(): void {
178178
const dialogRef = this.dialog.open(LoginComponent, {
179179
width: "600px",
180+
disableClose: true,
181+
hasBackdrop: true,
180182
data: { myUser: this.myUser },
181183
});
182184

0 commit comments

Comments
 (0)