fix lint errors

master
Max 5 years ago
parent 2e3e88467b
commit 3f880c23c1

@ -115,7 +115,7 @@ export class GroupComponent implements OnInit {
this.groupService.group.subscribe(response => { this.groupService.group.subscribe(response => {
if (response) { if (response) {
if (response.id) { if (response.id) {
if(response.id.toString() === this.id){ if (response.id.toString() === this.id) {
this.loading = false; this.loading = false;
} }
} }

@ -18,7 +18,7 @@ export class User {
joinedAt: string; joinedAt: string;
friendCount: number; friendCount: number;
groupCount: number; groupCount: number;
isAdmin: boolean = false; isAdmin = false;
isGroupAdmin: boolean; isGroupAdmin: boolean;
darkmode = false; darkmode = false;

Loading…
Cancel
Save