Skip to content

Commit

Permalink
fix:[close #393] strip stack name of spaces
Browse files Browse the repository at this point in the history
replace stack name spaces with dashes
  • Loading branch information
jardon committed Aug 21, 2024
1 parent 56fc2b1 commit 094e8ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/subSystem.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ func (s *SubSystem) Create() error {
}

labels := map[string]string{
"stack": s.Stack.Name,
"stack": strings.ReplaceAll(s.Stack.Name, " ", "-"),
"name": s.Name,
}

Expand Down

0 comments on commit 094e8ef

Please sign in to comment.