1
0
mirror of https://github.com/rancher/types.git synced 2025-08-30 10:17:53 +00:00

fix duplicate transitioningMessage

This commit is contained in:
carolyn 2018-07-25 01:43:08 -07:00 committed by Alena Prokharchyk
parent 9898f6e9aa
commit e17524f5bb

View File

@ -102,6 +102,9 @@ func concat(str, next string) string {
if next == "" {
return str
}
if strings.EqualFold(str, next) {
return str
}
return str + "; " + next
}