diff --git a/CHANGELOG.md b/CHANGELOG.md index 61ee6735..d43e8e6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ * Clearer error message when adding a website * Fix error in 'projects' tab from user page +* increase size of input field in users page +* add a readonly input field under email for showing the email domain ## 1.4.31 (2024-09-27) diff --git a/manager2/src/app/user/user.component.html b/manager2/src/app/user/user.component.html index f18d4815..153a2886 100644 --- a/manager2/src/app/user/user.component.html +++ b/manager2/src/app/user/user.component.html @@ -76,62 +76,68 @@

Information

-
+
-
+
-
+
+
+ +
+ +
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -156,7 +162,7 @@

Information

-
+
@@ -164,7 +170,7 @@

Information

-
+
@@ -172,19 +178,19 @@

Information

-
+
-
+
-
+
@@ -192,23 +198,23 @@

Information

- +
- +
- +
- +
- +
@@ -216,13 +222,13 @@

Information

-
+
-
+
diff --git a/manager2/src/app/user/user.component.ts b/manager2/src/app/user/user.component.ts index 396df458..6e81648e 100644 --- a/manager2/src/app/user/user.component.ts +++ b/manager2/src/app/user/user.component.ts @@ -245,6 +245,10 @@ export class UserComponent implements OnInit { this.otp_err_msg = "" } + get emailDomain(): string { + return this.user.email.split('@')[1] || ''; + } + onExtraValue(extras: any) { console.debug('extras updated', extras); let new_extra = [];