From 1f8bd4cee4d0b3ea746b9ac14eaba612b0f0b2b8 Mon Sep 17 00:00:00 2001 From: Dima R <90623914+cx-dmitri-rivin@users.noreply.github.com> Date: Sun, 20 Jul 2025 16:17:36 +0300 Subject: [PATCH] CustomImages fix --- types/types.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/types.go b/types/types.go index 8db088e..c471b7b 100644 --- a/types/types.go +++ b/types/types.go @@ -39,7 +39,7 @@ const ( DockerFileOrigin = "Dockerfile" DockerComposeFileOrigin = "DockerCompose" HelmFileOrigin = "Helm" - NoFilePath = "NONE" + CustomImages = "Custom Images" ) type Microservice struct { @@ -61,7 +61,7 @@ func ToImageModels(images []string) []ImageModel { ImageLocations: []ImageLocation{ { Origin: UserInput, - Path: NoFilePath, + Path: CustomImages, FinalStage: false, }, },