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 179aa64fc39122e30e1e70e307455493272e9d9b Author: mintsweet <[email protected]> AuthorDate: Wed Dec 27 17:12:11 2023 +1300 fix(config-ui): dis-associate tips error --- config-ui/src/routes/connection/connection.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config-ui/src/routes/connection/connection.tsx b/config-ui/src/routes/connection/connection.tsx index f2ebc2831..3e0a4aeec 100644 --- a/config-ui/src/routes/connection/connection.tsx +++ b/config-ui/src/routes/connection/connection.tsx @@ -211,7 +211,8 @@ export const Connection = () => { ), { setOperating, - formatMessage: () => `Associate scope config successful.`, + formatMessage: () => + trId !== 'None' ? 'Associate scope config successful.' : 'Dis-associate scope config successful.', }, );
