Merge branch 'max_dev' of Software_Engineering_I/greenvironment-frontend into master

master
Max_ES 4 years ago committed by Gitea
commit 349c5443b9

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

@ -8,4 +8,4 @@ export class ReportReason {
this.name = name;
this.description = describtion;
}
}
}

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

Loading…
Cancel
Save