From 8a7f0248f9f4dbfbc022667bf8f5a0533e583834 Mon Sep 17 00:00:00 2001 From: Jon Koops Date: Fri, 1 Dec 2023 12:07:18 +0100 Subject: [PATCH] If application has no URL, render text only (#25138) (#25198) Fixes #25124 Signed-off-by: Stan Silvert Co-authored-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 148a0c47142..ad50e9792eb 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} + + )} ,