This is an automated email from the ASF dual-hosted git repository.
klesh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/devlake.git
The following commit(s) were added to refs/heads/main by this push:
new 0e96ba111 fix: recover create a new connection action (#8952)
0e96ba111 is described below
commit 0e96ba1112404cae1eddbfe26c2528e83a032be8
Author: kirillNevedrov <[email protected]>
AuthorDate: Tue Jun 30 09:18:16 2026 +0200
fix: recover create a new connection action (#8952)
---
config-ui/src/plugins/components/connection-list/index.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config-ui/src/plugins/components/connection-list/index.tsx
b/config-ui/src/plugins/components/connection-list/index.tsx
index e0985b1d1..2b253f25e 100644
--- a/config-ui/src/plugins/components/connection-list/index.tsx
+++ b/config-ui/src/plugins/components/connection-list/index.tsx
@@ -113,7 +113,7 @@ export const ConnectionList = ({ plugin, onCreate }: Props)
=> {
dataSource={connections}
pagination={false}
/>
- <Button style={{ marginTop: 16 }} type="primary" icon={<PlusOutlined />}
onClick={onCreate}>
+ <Button style={{ marginTop: 16 }} type="primary" icon={<PlusOutlined />}
onClick={() => onCreate()}>
Create a New Connection
</Button>
<Modal