We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
4.0.0-beta.5
renderToStaticMarkup(<StaticRouter location='/' context={{}}> <Link to='/a'>to a</Link> </StaticRouter>)
render a react component containing <Link/>s
<Link/>
the string should be <a href="/a">to a</a>
<a href="/a">to a</a>
the string is <a href="//a">to a</a> (note the extra slash)
<a href="//a">to a</a>
(the problem exists with renderToString as well, used the above for brevity)
renderToString
The text was updated successfully, but these errors were encountered:
Fixed in #4484
Sorry, something went wrong.
thanks much!
No branches or pull requests
Version
4.0.0-beta.5
Test Case
Steps to reproduce
render a react component containing
<Link/>
sExpected Behavior
the string should be
<a href="/a">to a</a>
Actual Behavior
the string is
<a href="//a">to a</a>
(note the extra slash)(the problem exists with
renderToString
as well, used the above for brevity)The text was updated successfully, but these errors were encountered: