in src/Links.js [19:85]
render() {
return (
<div className="links-container">
<div className="Links">
<div style={{ display: "inline" }}>
<a style={{ fontWeight: "bold" }} href="https://hud.pytorch.org">
PyTorch CI HUD
</a>
<ul style={{ display: "inline" }} className="menu">
<LinkHeader />
<li>
<a href="https://metrics.pytorch.org">metrics</a>
</li>
<li>
<a href="/overview">overview</a>
</li>
<li>
<a
href="more"
onClick={(e) => {
e.preventDefault();
const prev = this.state.showMore;
this.setState({ showMore: !prev });
return false;
}}
>
{this.state.showMore ? "less" : "more"}
</a>
</li>
</ul>
</div>
<div
style={{
display: "inline",
marginLeft: "auto",
marginRight: "0px",
}}
>
<ul style={{ marginBottom: "0" }} className="menu">
<li>
<a href="https://github.com/pytorch/pytorch/wiki/Using-hud.pytorch.org">
help
</a>
</li>
<li>
<a href="https://github.com/pytorch/ci-hud/issues/new?assignees=&labels=&template=feature_request.yaml&title=%5Bfeature%5D%3A+">
requests
</a>
</li>
<li>
<AuthorizeGitHub />
</li>
<li>
<a
style={{ color: "black" }}
href="https://github.com/pytorch/pytorch-ci-hud"
>
<AiFillGithub />
</a>
</li>
</ul>
</div>
</div>
{this.state.showMore && <ShowMoreLinkHeader />}
</div>
);
}