diff --git a/frontend/packages/dev-console/src/components/catalog/providers/useDevfile.tsx b/frontend/packages/dev-console/src/components/catalog/providers/useDevfile.tsx index 6fd5247144d..8daa2353ce7 100644 --- a/frontend/packages/dev-console/src/components/catalog/providers/useDevfile.tsx +++ b/frontend/packages/dev-console/src/components/catalog/providers/useDevfile.tsx @@ -11,7 +11,6 @@ const normalizeDevfile = (devfileSamples: DevfileSample[], t: TFunction): Catalo const normalizedDevfileSamples = devfileSamples?.map((sample) => { const { name: uid, displayName, description, tags, git, icon } = sample; const gitRepoUrl = Object.values(git.remotes)[0]; - const iconUrl = icon || ''; const href = `/import?importType=devfile&devfileName=${uid}&gitRepo=${gitRepoUrl}`; const createLabel = t('devconsole~Create Application'); const type = 'Devfile'; @@ -41,7 +40,7 @@ const normalizeDevfile = (devfileSamples: DevfileSample[], t: TFunction): Catalo label: createLabel, href, }, - icon: { url: iconUrl }, + icon: { url: icon }, details: { properties: detailsProperties, descriptions: detailsDescriptions, diff --git a/vendor/OWNERS b/vendor/OWNERS new file mode 100644 index 00000000000..062b8ab8ee9 --- /dev/null +++ b/vendor/OWNERS @@ -0,0 +1,8 @@ +reviewers: + - florkbr + - jhadvig +approvers: + - florkbr +labels: + - component/backend + - kind/dependency-change