fix(widget): incorrect links href (#592)
Recommendation links should link to correct URL.pull/597/head
parent
f9258903b7
commit
26803f3807
|
@ -16,7 +16,7 @@ class Links extends Component {
|
||||||
hostname = new URL(hostname).hostname;
|
hostname = new URL(hostname).hostname;
|
||||||
} catch (e) { }
|
} catch (e) { }
|
||||||
return <li>
|
return <li>
|
||||||
<a class="level is-mobile is-mobile" href="<%- links[i] %>" target="_blank" rel="noopener">
|
<a class="level is-mobile is-mobile" href={links[i]} target="_blank" rel="noopener">
|
||||||
<span class="level-left">
|
<span class="level-left">
|
||||||
<span class="level-item">{i}</span>
|
<span class="level-item">{i}</span>
|
||||||
</span>
|
</span>
|
||||||
|
|
Loading…
Reference in New Issue