File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
components/YDBDefinitionList
containers/Tenant/Diagnostics/Overview/TransferInfo Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export function YDBDefinitionList({
4242 { ...restProps }
4343 >
4444 { items . map ( ( item ) => (
45- < DefinitionList . Item key = { item . name } { ...item } />
45+ < DefinitionList . Item key = { item . name } children = { item . content } { ...item } />
4646 ) ) }
4747 </ DefinitionList >
4848 ) ;
Original file line number Diff line number Diff line change @@ -19,8 +19,9 @@ export function Credentials({connection}: CredentialsProps) {
1919 ) ;
2020 }
2121
22- if ( 'OAuthToken' in connection ) {
23- return 'OAuth' ;
22+ if ( connection . OAuthToken ) {
23+ //return connection.OAuthToken.keys().length;
24+ return connection . OAuthToken . Token || connection . OAuthToken . TokenSecretName ? 'OAuth' : '' ;
2425 }
2526
2627 return 'unknown' ;
You can’t perform that action at this time.
0 commit comments