This is an automated email from the ASF dual-hosted git repository. mintsweet pushed a commit to branch fix-bugs in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
commit 0ae0267814489b76a97dc3292df143e34679f67d Author: mintsweet <[email protected]> AuthorDate: Wed Dec 27 15:51:09 2023 +1300 fix(config-ui): change button type in connection status --- config-ui/src/plugins/components/connection-status/index.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/config-ui/src/plugins/components/connection-status/index.tsx b/config-ui/src/plugins/components/connection-status/index.tsx index 9430de712..e71011b5f 100644 --- a/config-ui/src/plugins/components/connection-status/index.tsx +++ b/config-ui/src/plugins/components/connection-status/index.tsx @@ -60,7 +60,12 @@ export const ConnectionStatus = ({ connection }: Props) => { <Wrapper> <span className={status}>{STATUS_MAP[status]}</span> {status !== IConnectionStatus.ONLINE && ( - <Button loading={status === IConnectionStatus.TESTING} icon={<RedoOutlined />} onClick={handleTest} /> + <Button + type="text" + loading={status === IConnectionStatus.TESTING} + icon={<RedoOutlined />} + onClick={handleTest} + /> )} </Wrapper> );
