style: Fixed code-style in `chatroom.component.ts`
authorKai Moritz <kai@juplo.de>
Sat, 7 Jan 2023 18:46:57 +0000 (19:46 +0100)
committerKai Moritz <kai@juplo.de>
Sat, 7 Jan 2023 18:51:53 +0000 (19:51 +0100)
src/app/chatroom/chatroom.component.ts

index c94a55b..3f50fee 100644 (file)
@@ -1,9 +1,9 @@
 import { Component, OnInit, NgZone, OnDestroy } from '@angular/core';
 import { ActivatedRoute, Router } from '@angular/router';
-import { ChatroomService } from "../chatroom.service";
-import { UserService } from "../user.service";
-import { Chatroom } from "../chatroom";
-import { Message } from "../message";
+import { ChatroomService } from '../chatroom.service';
+import { UserService } from '../user.service';
+import { Chatroom } from '../chatroom';
+import { Message } from '../message';
 
 @Component({
   selector: 'app-chatroom',
@@ -12,7 +12,7 @@ import { Message } from "../message";
 })
 export class ChatroomComponent implements OnInit, OnDestroy {
 
-  chatroom: Chatroom = { id: 'FOO', name: 'BAR'};
+  chatroom: Chatroom = { id: 'FOO', name: 'BAR' };
   messages: Message[] = [];
 
   constructor(