From 15a417d9bd4938e3b9768aadb17f9e4d4a2ac340 Mon Sep 17 00:00:00 2001 From: Moritz Date: Tue, 7 Mar 2023 13:46:19 +0100 Subject: [PATCH] fix(list): fix output of chaos + chaos-version merge --- cli/app/list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/app/list.go b/cli/app/list.go index e3abe77b..5e8201f2 100644 --- a/cli/app/list.go +++ b/cli/app/list.go @@ -251,7 +251,7 @@ can take some time. if status { chaosStatus := "unknown" if appStat.ChaosVersion != "unknown" { - chaosStatus = appStat.Chaos + appStat.ChaosVersion + chaosStatus = appStat.ChaosVersion } else { chaosStatus = appStat.Chaos }