[_]
This commit is contained in:
parent
114f09ea32
commit
0c1f74fa49
1 changed files with 4 additions and 4 deletions
|
|
@ -56,12 +56,12 @@ func processComponent(process *gou.Process) interface{} {
|
|||
}
|
||||
|
||||
func processSetting(process *gou.Process) interface{} {
|
||||
form := MustGet(process)
|
||||
chart := MustGet(process)
|
||||
process.Args = append(process.Args, process.Args[0]) // chart name
|
||||
return form.Action.Setting.MustExec(process)
|
||||
return chart.Action.Setting.MustExec(process)
|
||||
}
|
||||
|
||||
func processData(process *gou.Process) interface{} {
|
||||
form := MustGet(process)
|
||||
return form.Action.Data.MustExec(process)
|
||||
chart := MustGet(process)
|
||||
return chart.Action.Data.MustExec(process)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue