diff --git a/web/components.d.ts b/web/components.d.ts index a93810057..4016eb70b 100644 --- a/web/components.d.ts +++ b/web/components.d.ts @@ -76,6 +76,7 @@ declare module 'vue' { InputField: typeof import('./src/components/form/InputField.vue')['default'] IPhGitlabLogoSimpleFill: typeof import('~icons/ph/gitlab-logo-simple-fill')['default'] ISimpleIconsGitea: typeof import('~icons/simple-icons/gitea')['default'] + ISvgSpinners180RingWithBg: typeof import('~icons/svg-spinners/180-ring-with-bg')['default'] ITeenyiconsGitSolid: typeof import('~icons/teenyicons/git-solid')['default'] ITeenyiconsRefreshOutline: typeof import('~icons/teenyicons/refresh-outline')['default'] IVaadinQuestionCircleO: typeof import('~icons/vaadin/question-circle-o')['default'] diff --git a/web/src/components/repo/pipeline/PipelineStepList.vue b/web/src/components/repo/pipeline/PipelineStepList.vue index 62abc6919..97494256b 100644 --- a/web/src/components/repo/pipeline/PipelineStepList.vue +++ b/web/src/components/repo/pipeline/PipelineStepList.vue @@ -109,7 +109,7 @@ }" @click="$emit('update:selected-step-id', step.pid)" > - + {{ step.name }} diff --git a/web/src/lib/api/types/pipeline.ts b/web/src/lib/api/types/pipeline.ts index 82235f8a7..aafb7611f 100644 --- a/web/src/lib/api/types/pipeline.ts +++ b/web/src/lib/api/types/pipeline.ts @@ -149,9 +149,9 @@ export type PipelineFeed = Pipeline & { }; export enum StepType { - Clone = 1, - Service, - Plugin, - Commands, - Cache, + Clone = 'clone', + Service = 'service', + Plugin = 'plugin', + Commands = 'commands', + Cache = 'cache', }