Skip to content

Commit 06d82ce

Browse files
keith-oakclaude
andcommitted
fix: update AAD display name to Microsoft Entra ID in auth UI
Updates the auth emulator UI to show "Microsoft Entra ID" instead of "AAD" while maintaining backward compatibility by keeping 'aad' as the underlying provider value. Also adds clarification in help text. Fixes #850 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 11fe14d commit 06d82ce

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/public/auth.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@ <h1 class="pb-4">Azure Static Web Apps Auth</h1>
7878
required="required"
7979
class="form-control"
8080
/>
81-
<small id="identityProviderHelpBlock" class="form-text text-muted">Name of the identity provider</small>
81+
<small id="identityProviderHelpBlock" class="form-text text-muted">Name of the identity provider (aad = Microsoft Entra ID)</small>
8282
</div>
8383
<datalist id="providers-list">
84-
<option value="aad"></option>
85-
<option value="google"></option>
86-
<option value="github"></option>
87-
<option value="twitter"></option>
88-
<option value="facebook"></option>
89-
<option value="openid"></option>
84+
<option value="aad">Microsoft Entra ID</option>
85+
<option value="google">Google</option>
86+
<option value="github">GitHub</option>
87+
<option value="twitter">Twitter</option>
88+
<option value="facebook">Facebook</option>
89+
<option value="openid">OpenID</option>
9090
</datalist>
9191
</div>
9292

0 commit comments

Comments
 (0)