1
0
mirror of https://github.com/google/nomulus synced 2026-01-03 11:45:39 +00:00

Anonymize support users in console history, add minor UI updates (#2851)

This commit is contained in:
Pavlo Tkach
2025-10-17 14:57:40 -04:00
committed by GitHub
parent b144aafb22
commit 51b579871a
5 changed files with 132 additions and 7 deletions

View File

@@ -56,7 +56,7 @@ export class HistoryListComponent {
return { main: 'N/A', detail: null };
}
const parts = description.split('|');
const detail = parts.length > 1 ? parts[1].replace(/_/g, ' ') : null;
const detail = parts.length > 1 ? parts[1].replace(/_/g, ' ') : parts[0];
return {
main: parts[0],

View File

@@ -57,6 +57,11 @@
[(ngModel)]="contactService.contactInEdit.emailAddress"
[ngModelOptions]="{ standalone: true }"
[disabled]="emailAddressIsDisabled()"
[matTooltip]="
emailAddressIsDisabled()
? 'Reach out to registry customer support to update email address'
: ''
"
/>
</mat-form-field>
@@ -84,6 +89,7 @@
<h1>Contact Type</h1>
<p class="console-app__contact-required">
<mat-icon color="accent">error</mat-icon>Required to select at least one
(primary contact can't be updated)
</p>
<div class="">
<ng-container