From 764a8a374de1e1ec10b78b5168d6a08209cf136a Mon Sep 17 00:00:00 2001 From: Veet Moradiya Date: Sat, 19 Sep 2026 05:13:14 +0000 Subject: [PATCH] fix(gitlab) - fix added to get pathWithNamespace to render in UI --- config-ui/src/plugins/utils.ts | 4 ++++ 1 file changed, 4 insertions(+) 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 ?? ''}`; };