This is an automated email from the ASF dual-hosted git repository.
ocket8888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git
The following commit(s) were added to refs/heads/master by this push:
new 9c244c5c38 TP v2 change Full Name to Name on the user page (#6899)
9c244c5c38 is described below
commit 9c244c5c3813f8dc7ba3f3e5c1f9d6e2ee4d8ef6
Author: solomonbS <[email protected]>
AuthorDate: Wed Jul 6 11:29:33 2022 -0500
TP v2 change Full Name to Name on the user page (#6899)
* change Full Name to Name on the user page
* changed the attribute name to fullName
* changed the fullName to Name
* changed the fullName to Name on user det page
* changed name back to fullName on current user service page
Co-authored-by: Solomon Bosco <solomon_bosco.comcast.com>
---
.../traffic-portal/src/app/core/currentuser/currentuser.component.html | 2 +-
.../src/app/core/users/user-details/user-details.component.html | 2 +-
experimental/traffic-portal/src/app/core/users/users.component.ts | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git
a/experimental/traffic-portal/src/app/core/currentuser/currentuser.component.html
b/experimental/traffic-portal/src/app/core/currentuser/currentuser.component.html
index 089d436319..abf532f0f9 100644
---
a/experimental/traffic-portal/src/app/core/currentuser/currentuser.component.html
+++
b/experimental/traffic-portal/src/app/core/currentuser/currentuser.component.html
@@ -34,7 +34,7 @@ limitations under the License.
<input matInput [(ngModel)]="editUser.username"
name="username" type="text" required/>
</mat-form-field>
<mat-form-field style="grid-area: z;">
- <mat-label>Full Name</mat-label>
+ <mat-label>Name</mat-label>
<input matInput [(ngModel)]="editUser.fullName"
name="fullName" type="text" required/>
</mat-form-field>
<mat-form-field style="grid-area: b;">
diff --git
a/experimental/traffic-portal/src/app/core/users/user-details/user-details.component.html
b/experimental/traffic-portal/src/app/core/users/user-details/user-details.component.html
index 00212ff872..f59748f8b0 100644
---
a/experimental/traffic-portal/src/app/core/users/user-details/user-details.component.html
+++
b/experimental/traffic-portal/src/app/core/users/user-details/user-details.component.html
@@ -20,7 +20,7 @@ limitations under the License.
<input matInput type="text" name="username"
required [(ngModel)]="user.username"/>
</mat-form-field>
<mat-form-field>
- <mat-label>Full Name</mat-label>
+ <mat-label>Name</mat-label>
<input matInput type="text" name="fullName"
required [(ngModel)]="user.fullName"/>
</mat-form-field>
<mat-form-field>
diff --git a/experimental/traffic-portal/src/app/core/users/users.component.ts
b/experimental/traffic-portal/src/app/core/users/users.component.ts
index 573c3768bf..82a366a220 100644
--- a/experimental/traffic-portal/src/app/core/users/users.component.ts
+++ b/experimental/traffic-portal/src/app/core/users/users.component.ts
@@ -84,7 +84,7 @@ export class UsersComponent implements OnInit {
},
{
field: "fullName",
- headerName: "Full Name",
+ headerName: "Name",
hide: false
},
{