From 842f7b94652f13a3a99d0a39a63ab3934e545799 Mon Sep 17 00:00:00 2001 From: Yuchen Shi Date: Wed, 22 Sep 2021 12:18:22 -0700 Subject: [PATCH 1/2] Minor fixes for Auth Emulator IDP widget. --- src/emulator/auth/handlers.ts | 6 ++++-- src/emulator/auth/widget_ui.ts | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/emulator/auth/handlers.ts b/src/emulator/auth/handlers.ts index f08ed8dca14..b0d22252d97 100644 --- a/src/emulator/auth/handlers.ts +++ b/src/emulator/auth/handlers.ts @@ -195,9 +195,11 @@ export function registerHandlers( ` } ${ - info.displayName + info.displayName || "(No display name)" + } + ${ + info.email || "" } - ${info.email} ` ) .join("\n"); diff --git a/src/emulator/auth/widget_ui.ts b/src/emulator/auth/widget_ui.ts index a5b8696613c..ce862e75d33 100644 --- a/src/emulator/auth/widget_ui.ts +++ b/src/emulator/auth/widget_ui.ts @@ -491,7 +491,7 @@ export const WIDGET_UI = ` Auth Emulator IDP Login Widget - + @@ -604,6 +604,6 @@ export const WIDGET_UI = ` - + `; From abdcd73b8edbc4f8e8f60189a7d2fcc57107972b Mon Sep 17 00:00:00 2001 From: Yuchen Shi Date: Wed, 22 Sep 2021 12:19:43 -0700 Subject: [PATCH 2/2] Changelog. --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a99a4249af6..135ecd2b1ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,3 @@ - `ext:dev:publish` and `ext:update` now support --force and --non-interactive flags. - Fixes issue where account specified by `login:use` was not being correctly loaded (#3759). +- Fixes minor layout issues in Auth Emulator IDP sign-in page (#3774).