Skip to content

Commit e89e61a

Browse files
committed
match links with no protocol
1 parent 158922c commit e89e61a

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

src/ui/link/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const Link = forwardRef<HTMLButtonElement | HTMLAnchorElement, LinkProps>(
7272
)) ||
7373
''
7474
: to;
75-
const IS_ABSOLUTE_LINK_REGEX = /^(?:(http|https):\/\/)/;
75+
const IS_ABSOLUTE_LINK_REGEX = /^((?:(http|https):\/\/)|\/\/)/;
7676
const staticBasePath =
7777
(href != null && !IS_ABSOLUTE_LINK_REGEX.test(href)) || typeof to === 'string' ? routeAttributes.basePath : '';
7878

src/ui/link/test.tsx

+14
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,20 @@ describe('<Link />', () => {
119119
);
120120
});
121121

122+
it('should not add basePath for absolute links with no protocol specified', () => {
123+
renderInRouter(
124+
'my link',
125+
{
126+
href: '//www.atlassian.com/',
127+
},
128+
'/base'
129+
);
130+
expect(screen.getByRole('link', { name: 'my link' })).toHaveAttribute(
131+
'href',
132+
'//www.atlassian.com/'
133+
);
134+
});
135+
122136
it('should pass props to the child element', () => {
123137
renderInRouter('my link', {
124138
...defaultProps,

0 commit comments

Comments
 (0)