diff --git a/config-ui/src/plugins/utils.ts b/config-ui/src/plugins/utils.ts index b18bdb7aea3..5ab07453f7e 100644 --- a/config-ui/src/plugins/utils.ts +++ b/config-ui/src/plugins/utils.ts @@ -87,6 +87,10 @@ export const getPluginScopeName = (plugin: string, scope: any) => { return rawId; } + if (plugin === 'gitlab') { + return `${scope.pathWithNamespace ?? scope.fullName ?? scope.name ?? scope.id ?? ''}`; + } + return `${scope.fullName ?? scope.name ?? scope.id ?? ''}`; };