mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
fix(console): show platform icons in connector table (#1792)
This commit is contained in:
parent
87d3a53b65
commit
31f243957c
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ const ConnectorName = ({ type, connectors, onClickSetup }: Props) => {
|
|||
subtitle={
|
||||
<>
|
||||
{type !== ConnectorType.Social && connector.id}
|
||||
{type === ConnectorType.Social && enabledConnectors.length > 1 && (
|
||||
{type === ConnectorType.Social && connectors.length > 1 && (
|
||||
<div className={styles.platforms}>
|
||||
{enabledConnectors.map(
|
||||
({ id, platform }) =>
|
||||
|
|
Loading…
Add table
Reference in a new issue