From 8a9b83d0163b2f8572c0f80ae8a698bb5cd0c377 Mon Sep 17 00:00:00 2001 From: Stan Silvert Date: Thu, 30 Nov 2023 14:05:06 -0500 Subject: [PATCH] If application has no URL, render text only (#25138) Fixes #25124 Signed-off-by: Stan Silvert --- .../src/applications/Applications.tsx | 25 ++++++++++++------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/js/apps/account-ui/src/applications/Applications.tsx b/js/apps/account-ui/src/applications/Applications.tsx index 148a0c4714..ad50e9792e 100644 --- a/js/apps/account-ui/src/applications/Applications.tsx +++ b/js/apps/account-ui/src/applications/Applications.tsx @@ -128,15 +128,22 @@ const Applications = () => { className="pf-u-align-items-center" dataListCells={[ - + {application.effectiveUrl && ( + + )} + {!application.effectiveUrl && ( + + {application.clientName || application.clientId} + + )} ,