Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions apps/ui/src/components/site-fields/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ export function adminEmailField< T extends { adminEmail: string } >(): Field< T
return {
id: 'adminEmail',
type: 'email',
// The default email control prefixes the input with an envelope icon;
// use the plain text control instead (email-type validation still applies).
Edit: 'text',
label: __( 'Admin email' ),
isValid: {
required: true,
Expand Down