File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
site/src/pages/UserSettingsPage/ExternalAuthPage Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ const ExternalAuthRow: FC<ExternalAuthRowProps> = ({
112
112
onUnlinkExternalAuth,
113
113
onValidateExternalAuth,
114
114
} ) => {
115
- const name = app . id || app . type ;
115
+ const name = app . display_name || app . id || app . type ;
116
116
const authURL = "/external-auth/" + app . id ;
117
117
118
118
const {
@@ -127,10 +127,10 @@ const ExternalAuthRow: FC<ExternalAuthRowProps> = ({
127
127
: link ?. authenticated ?? false ;
128
128
129
129
return (
130
- < TableRow key = { name } >
130
+ < TableRow key = { app . id } >
131
131
< TableCell >
132
132
< AvatarData
133
- title = { app . display_name || app . id }
133
+ title = { name }
134
134
avatar = {
135
135
app . display_icon && (
136
136
< Avatar src = { app . display_icon } variant = "square" fitImage />
You can’t perform that action at this time.
0 commit comments