diff --git a/web/ui/react-app/src/pages/targets/EndpointLink.test.tsx b/web/ui/react-app/src/pages/targets/EndpointLink.test.tsx
index 6b29d43c2..e48efa64d 100644
--- a/web/ui/react-app/src/pages/targets/EndpointLink.test.tsx
+++ b/web/ui/react-app/src/pages/targets/EndpointLink.test.tsx
@@ -24,10 +24,10 @@ describe('EndpointLink', () => {
expect(anchor.children().text()).toEqual('http://100.99.128.71:9115/probe');
expect(endpointLink.find('br')).toHaveLength(1);
expect(badges).toHaveLength(2);
- const moduleLabel = badges.filterWhere(badge => badge.hasClass('module'));
- expect(moduleLabel.children().text()).toEqual('module="http_2xx"');
- const targetLabel = badges.filterWhere(badge => badge.hasClass('target'));
- expect(targetLabel.children().text()).toEqual('target="http://some-service"');
+ const moduleLabel = badges.filterWhere(badge => badge.children().text() === 'module="http_2xx"');
+ expect(moduleLabel.length).toEqual(1);
+ const targetLabel = badges.filterWhere(badge => badge.children().text() === 'target="http://some-service"');
+ expect(targetLabel.length).toEqual(1);
});
it('renders an alert if url is invalid', () => {
@@ -37,7 +37,7 @@ describe('EndpointLink', () => {
});
it('handles params with multiple values correctly', () => {
- const consoleSpy = jest.spyOn(console, "warn");
+ const consoleSpy = jest.spyOn(console, 'warn');
const endpoint = `http://example.com/federate?match[]={__name__="name1"}&match[]={__name__="name2"}&match[]={__name__="name3"}`;
const globalURL = 'http://example.com/federate';
const endpointLink = mount();
diff --git a/web/ui/react-app/src/pages/targets/EndpointLink.tsx b/web/ui/react-app/src/pages/targets/EndpointLink.tsx
index a86a93429..d0376a140 100644
--- a/web/ui/react-app/src/pages/targets/EndpointLink.tsx
+++ b/web/ui/react-app/src/pages/targets/EndpointLink.tsx
@@ -27,7 +27,7 @@ const EndpointLink: FC = ({ endpoint, globalUrl }) => {
{params.length > 0 ?
: null}
{params.map(([labelName, labelValue]: [string, string]) => {
return (
-
+
{`${labelName}="${labelValue}"`}
);