From 60d548df4693bb3cf0a91babfdb03ab472d35d77 Mon Sep 17 00:00:00 2001 From: Mononaut Date: Mon, 27 Jan 2025 03:37:01 +0000 Subject: [PATCH] add missing sg1 hnl emojis --- .../app/components/server-health/server-health.component.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/app/components/server-health/server-health.component.ts b/frontend/src/app/components/server-health/server-health.component.ts index 6f92c0c93..c1b6fe443 100644 --- a/frontend/src/app/components/server-health/server-health.component.ts +++ b/frontend/src/app/components/server-health/server-health.component.ts @@ -82,6 +82,10 @@ export class ServerHealthComponent implements OnInit { return 'πŸ‡ΊπŸ‡Έ'; } else if (host.includes('.va1.')) { return 'πŸ‡ΊπŸ‡Έ'; + } else if (host.includes('.sg1.')) { + return 'πŸ‡ΈπŸ‡¬'; + } else if (host.includes('.hnl.')) { + return 'πŸ€™'; } else { return ''; }