From e7f2bc30aa5b7ff5fcb8fda3158266b9a62b4da2 Mon Sep 17 00:00:00 2001 From: taylanbakircioglu Date: Fri, 7 Nov 2025 11:51:15 +0300 Subject: [PATCH] Cleanup: Remove emoji from Frontend SSL field description MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Code cleanup - removed emoji from form field Changed: extra="🆕 Select one or more..." To: extra="Select one or more..." Note: Backend Server SSL is single select (correct) Frontend SSL is multiple select (correct - supports SNI) --- frontend/src/components/FrontendManagement.js | 25 ++++++++++++------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/frontend/src/components/FrontendManagement.js b/frontend/src/components/FrontendManagement.js index 8152db0..520724c 100644 --- a/frontend/src/components/FrontendManagement.js +++ b/frontend/src/components/FrontendManagement.js @@ -166,7 +166,6 @@ const FrontendManagement = () => { // CRITICAL FIX: Don't fetch if no cluster selected to prevent race condition // Same race condition as BackendServers - prevents all frontends from appearing if (!selectedCluster) { - console.log('FETCH FRONTENDS: No cluster selected, skipping fetch'); setFrontends([]); setFilteredFrontends([]); return; @@ -1437,26 +1436,34 @@ const FrontendManagement = () => {