photo-management works!
2 | -------------------------------------------------------------------------------- /client/src/app/admin/photo-management/photo-management.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-photo-management', 5 | templateUrl: './photo-management.component.html', 6 | styleUrls: ['./photo-management.component.css'] 7 | }) 8 | export class PhotoManagementComponent implements OnInit { 9 | 10 | constructor() { } 11 | 12 | ngOnInit(): void { 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /client/src/app/admin/user-management/user-management.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryCatchLearn/DatingApp-v6/d2fee1117ac86155ff5f43df661d452a0eb427ec/client/src/app/admin/user-management/user-management.component.css -------------------------------------------------------------------------------- /client/src/app/admin/user-management/user-management.component.html: -------------------------------------------------------------------------------- 1 |Username | 6 |Active roles | 7 |8 | |
---|---|---|
{{user.username}} | 13 |{{user.roles}} | 14 |15 | |
Note: If you are seeing this then Angular is probably not to blame
5 |What to do next?
6 |Following is the stack trace - this is where your investigation should start!
14 |{{error.details}}
15 | Come on in to view your matches... all you need to do is sign up!
5 |{{member.city}}
27 |{{member.city}}, {{member.country}}
13 |{{member.age}}
17 |{{member.lastActive | timeago}}
21 |{{member.created | date: 'dd MMM yyyy'}}
25 |{{member.introduction}}
41 |{{member.lookingFor}}
43 |{{member.interests}}
47 |{{member.city}}, {{member.country}}
18 |{{member.age}}
22 |{{member.lastActive | timeago}}
26 |{{member.created | date: 'dd MMM yyyy'}}
30 |{{message.content}}
35 |Queue length: {{ uploader?.queue?.length }}
46 | 47 |Name | 51 |Size | 52 |
---|---|
{{ item?.file?.name }} | 57 |{{ item?.file?.size/1024/1024 | number:'.2' }} MB | 58 |
Message | 27 |From / To | 28 |Sent / Received | 29 |30 | |
---|---|---|---|
{{message.content}} | 38 |
39 |
40 |
46 | ![]()
47 |
53 | ![]() |
54 | {{message.messageSent | timeago}} | 55 |56 | 57 | | 58 |
{{message}}
6 |