We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac3e4cd commit 990d17aCopy full SHA for 990d17a
frontend/src/app/components/user/userProfile.component.html
@@ -12,7 +12,7 @@
12
13
<div class="col-md-5 border-right">
14
<div class="p-3 py-5">
15
- <form *ngIf="loginService.isLogged()">
+ <form *ngIf="loginservice.isLogged()">
16
<div class="d-flex justify-content-between align-items-center mb-3">
17
<h4 class="text-right">Mi perfil: "{{user.nick}}"</h4>
18
</div>
frontend/src/app/models/usero.model.ts
@@ -1,16 +1,17 @@
1
export interface Usero {
2
id?: number;
3
+
4
nick: string;
5
6
name: string;
-
7
8
lastName: string;
9
10
email: string;
11
creditCard: string;
image: boolean;
roles: string[];
-}
+}
0 commit comments