File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
- ` ext:dev:publish ` and ` ext:update ` now support --force and --non-interactive flags.
2
2
- Fixes issue where account specified by ` login:use ` was not being correctly loaded (#3759 ).
3
+ - Fixes minor layout issues in Auth Emulator IDP sign-in page (#3774 ).
Original file line number Diff line number Diff line change @@ -195,9 +195,11 @@ export function registerHandlers(
195
195
<span class="mdc-list-item__graphic material-icons" aria-hidden=true>person</span>`
196
196
}
197
197
<span class="mdc-list-item__text"><span class="mdc-list-item__primary-text">${
198
- info . displayName
198
+ info . displayName || "(No display name)"
199
+ } </span>
200
+ <span class="mdc-list-item__secondary-text fallback-secondary-text">${
201
+ info . email || ""
199
202
} </span>
200
- <span class="mdc-list-item__secondary-text fallback-secondary-text">${ info . email } </span>
201
203
</li>`
202
204
)
203
205
. join ( "\n" ) ;
Original file line number Diff line number Diff line change @@ -491,7 +491,7 @@ export const WIDGET_UI = `
491
491
<meta charset="utf-8">
492
492
<meta name="viewport" content="width=device-width, initial-scale=1.0">
493
493
<title>Auth Emulator IDP Login Widget</title>
494
- <link href="https://unpkg.com/material-components-web@latest /dist/material-components-web.min.css" rel="stylesheet">
494
+ <link href="https://unpkg.com/material-components-web@10 /dist/material-components-web.min.css" rel="stylesheet">
495
495
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
496
496
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
497
497
<style>${ STYLE } </style>
@@ -604,6 +604,6 @@ export const WIDGET_UI = `
604
604
</div>
605
605
</div>
606
606
</div>
607
- <script src="https://unpkg.com/material-components-web@latest /dist/material-components-web.min.js"></script>
607
+ <script src="https://unpkg.com/material-components-web@10 /dist/material-components-web.min.js"></script>
608
608
<script>${ SCRIPT } </script>
609
609
` ;
You can’t perform that action at this time.
0 commit comments