Skip to content

Commit

Permalink
Fix build issues after re-building models
Browse files Browse the repository at this point in the history
  • Loading branch information
isimluk committed Sep 17, 2020
1 parent 1775dde commit f97cf3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion generator/manipulation.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func ProcessSetParam(setParams []profile.SetParameter, c *catalog.Catalog, catal
if len(sp.Constraints) == 0 {
continue
}
c.Groups[i].Controls[j].Parts[k].ModifyProse(sp.ParamId, sp.Constraints[0].Value)
c.Groups[i].Controls[j].Parts[k].ModifyProse(sp.ParamId, sp.Constraints[0].Detail)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion impl/implementation.go
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ func GenerateImplementationParameter(param catalog.Param, guidance []string) imp
PossibleValues: func() []string {
values := []string{}
for _, x := range param.Constraints {
values = append(values, x.Value)
values = append(values, x.Detail)
}
return values
}(),
Expand Down

0 comments on commit f97cf3b

Please sign in to comment.