1
0
mirror of https://github.com/rancher/types.git synced 2025-08-27 08:18:24 +00:00

Succeeded jobs should not show transitioning

This commit is contained in:
Darren Shepherd 2018-04-27 13:03:19 -07:00
parent b4acd6816d
commit bb03350a4e

View File

@ -230,6 +230,7 @@ func genericStatus(data map[string]interface{}) {
if phase != "" && ok {
if phase == "Succeeded" {
state = "succeeded"
transitioning = false
} else if state == "" {
state = phase
}