Skip to content

Commit

Permalink
fix(api): we must send a empty value because undefined is not a funct…
Browse files Browse the repository at this point in the history
…ion (#2790)
  • Loading branch information
fsamin authored and sguiheux committed May 30, 2018
1 parent 79f2a1f commit 8109f0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/parameter.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ type Parameter struct {
ID int64 `json:"id" yaml:"-"`
Name string `json:"name"`
Type string `json:"type"`
Value string `json:"value,omitempty"`
Value string `json:"value"`
Description string `json:"description,omitempty" yaml:"desc,omitempty"`
}

Expand Down

0 comments on commit 8109f0d

Please sign in to comment.