Skip to content

Commit 57ef29a

Browse files
committed
Move connection params above auth data in details page
1 parent d9d7443 commit 57ef29a

File tree

1 file changed

+2
-2
lines changed
  • src/features/connection/ConnectionDetailInfo

1 file changed

+2
-2
lines changed

src/features/connection/ConnectionDetailInfo/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ export const ConnectionDetailInfo = ({ connection, group, ...props }: Connection
2727
<Descriptions.Item label={t('type', { ns: 'shared' })} span={3}>
2828
{CONNECTION_TYPE_NAMES[connection.type]}
2929
</Descriptions.Item>
30-
{getConnectionAuthData(connection, t).map((item, index) => (
30+
{getConnectionData(connection, t).map((item, index) => (
3131
<Descriptions.Item label={item.label} span={3} key={index}>
3232
{item.content}
3333
</Descriptions.Item>
3434
))}
35-
{getConnectionData(connection, t).map((item, index) => (
35+
{getConnectionAuthData(connection, t).map((item, index) => (
3636
<Descriptions.Item label={item.label} span={3} key={index}>
3737
{item.content}
3838
</Descriptions.Item>

0 commit comments

Comments
 (0)