This is an automated email from the ASF dual-hosted git repository. mintsweet pushed a commit to branch fix-azure-devops-data-scope in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
commit a15f19f5d3a77edc43dda7014796123af442063c Author: mintsweet <[email protected]> AuthorDate: Tue Jan 23 16:41:19 2024 +1300 fix: azure devops data scope name error --- config-ui/src/plugins/components/data-scope-remote/search-local.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config-ui/src/plugins/components/data-scope-remote/search-local.tsx b/config-ui/src/plugins/components/data-scope-remote/search-local.tsx index bc2ecb22e..244b72de2 100644 --- a/config-ui/src/plugins/components/data-scope-remote/search-local.tsx +++ b/config-ui/src/plugins/components/data-scope-remote/search-local.tsx @@ -196,7 +196,7 @@ export const SearchLocal = ({ plugin, connectionId, config, disabledScope, selec closable onClose={() => onChange(selectedScope.filter((it) => it.id !== sc.id))} > - {sc.fullName} + {sc.fullName ?? sc.name} </Tag> )) ) : (
