From ea50a833aaa67ccd3220b589be02bcf14c683b5c Mon Sep 17 00:00:00 2001 From: Michael Quigley Date: Tue, 3 Jan 2023 15:05:59 -0500 Subject: [PATCH] endpoints in share details (#141) --- ui/src/console/detail/ShareDetail.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/ui/src/console/detail/ShareDetail.js b/ui/src/console/detail/ShareDetail.js index ac52aa66..47dc2179 100644 --- a/ui/src/console/detail/ShareDetail.js +++ b/ui/src/console/detail/ShareDetail.js @@ -34,7 +34,14 @@ const ShareDetail = (props) => { metrics: row => - + , + frontendEndpoint: row => {row.value}, + backendProxyEndpoint: row => { + if(row.value.startsWith("http://") || row.value.startsWith("https://")) { + return {row.value}; + } + return row.value; + } } if(detail) {