Skip to content

Commit 990d17a

Browse files
author
JLRR2019
committed
Unos leves cambios
1 parent ac3e4cd commit 990d17a

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

frontend/src/app/components/user/userProfile.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<div class="col-md-5 border-right">
1414
<div class="p-3 py-5">
15-
<form *ngIf="loginService.isLogged()">
15+
<form *ngIf="loginservice.isLogged()">
1616
<div class="d-flex justify-content-between align-items-center mb-3">
1717
<h4 class="text-right">Mi perfil: "{{user.nick}}"</h4>
1818
</div>
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
export interface Usero {
22
id?: number;
3+
34
nick: string;
45

56
name: string;
6-
7+
78
lastName: string;
89

910
email: string;
1011

1112
creditCard: string;
1213

1314
image: boolean;
14-
15+
1516
roles: string[];
16-
}
17+
}

0 commit comments

Comments
 (0)