From e07dd8cd0527b3fea073f5f1c13ed23df9a0be1f Mon Sep 17 00:00:00 2001 From: Julius Volz Date: Tue, 6 Aug 2024 16:39:25 +0200 Subject: [PATCH] Always display HTTP params under the endpoint link Signed-off-by: Julius Volz --- web/ui/mantine-ui/src/components/EndpointLink.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/ui/mantine-ui/src/components/EndpointLink.tsx b/web/ui/mantine-ui/src/components/EndpointLink.tsx index 2fdb096515..477f86014b 100644 --- a/web/ui/mantine-ui/src/components/EndpointLink.tsx +++ b/web/ui/mantine-ui/src/components/EndpointLink.tsx @@ -1,4 +1,4 @@ -import { Anchor, Badge, Group } from "@mantine/core"; +import { Anchor, Badge, Group, Stack } from "@mantine/core"; import { FC } from "react"; export interface EndpointLinkProps { @@ -30,7 +30,7 @@ const EndpointLink: FC = ({ endpoint, globalUrl }) => { ? endpoint.replace(search, "") : `${protocol}//${host}${pathname}`; return ( - <> + {displayLink} @@ -51,7 +51,7 @@ const EndpointLink: FC = ({ endpoint, globalUrl }) => { })} )} - + ); };