Skip to content

Commit

Permalink
chore: show task args in array brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
leg100 committed Jul 9, 2024
1 parent 0329d79 commit 473b209
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/tui/task/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ func (m model) View() string {
envs = "-"
)
if len(m.task.Args) > 0 {
args = strings.Join(m.task.Args, "\n")
args = fmt.Sprintf("%v", m.task.Args)
}
if len(m.task.AdditionalEnv) > 0 {
envs = strings.Join(m.task.AdditionalEnv, "\n")
Expand Down

0 comments on commit 473b209

Please sign in to comment.