Skip to content

Commit

Permalink
[fix] bind table bug
Browse files Browse the repository at this point in the history
  • Loading branch information
trheyi committed Oct 22, 2022
1 parent 9be7c25 commit c081bd4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions widgets/action/process.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ func (p *Process) Merge(newProcess *Process) *Process {
p.Process = newProcess.Process
}

if p.ProcessBind == "" {
p.ProcessBind = newProcess.ProcessBind
}

if p.Guard == "" {
p.Guard = newProcess.Guard
}
Expand Down

0 comments on commit c081bd4

Please sign in to comment.