diff --git a/USERS.md b/USERS.md index 6f35c32acb66..9d409af2e811 100644 --- a/USERS.md +++ b/USERS.md @@ -243,6 +243,7 @@ Currently, the following organizations are **officially** using Argo CD: 1. [QuintoAndar](https://quintoandar.com.br) 1. [Quipper](https://www.quipper.com/) 1. [RapidAPI](https://www.rapidapi.com/) +1. [rebuy](https://www.rebuy.de/) 1. [Recreation.gov](https://www.recreation.gov/) 1. [Red Hat](https://www.redhat.com/) 1. [Redpill Linpro](https://www.redpill-linpro.com/) diff --git a/ui/src/app/applications/components/pod-logs-viewer/pod-logs-viewer.tsx b/ui/src/app/applications/components/pod-logs-viewer/pod-logs-viewer.tsx index 309287fab2f3..18778e2b848b 100644 --- a/ui/src/app/applications/components/pod-logs-viewer/pod-logs-viewer.tsx +++ b/ui/src/app/applications/components/pod-logs-viewer/pod-logs-viewer.tsx @@ -64,7 +64,7 @@ function stringHashCode(str: string) { // ansi color for pod name function podColor(podName: string) { - return colors[stringHashCode(podName) % colors.length]; + return colors[Math.abs(stringHashCode(podName) % colors.length)]; } // https://2ality.com/2012/09/empty-regexp.html