Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions SingularityUI/app/components/common/Navigation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,12 @@ const Navigation = (props) => {
</div>
<div className="collapse navbar-collapse" id="navbar-collapse">
<ul className="nav navbar-nav">
<li className={classnames({active: isActive('/', fragment)})}>
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If Requests is the default tab now, we should reorder the nav items so that Status isn't first.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah we can do that as well

<Link to="/">Dashboard {isActive('/', fragment) && <span className="sr-only">(current)</span>}</Link>
<li className={classnames({active: isActive('requests', fragment)})}>
<Link to="/requests">Requests {isActive('requests', fragment) && <span className="sr-only">(current)</span>}</Link>
</li>
<li className={classnames({active: isActive('status', fragment)})}>
<Link to="/status">Status {isActive('status', fragment) && <span className="sr-only">(current)</span>}</Link>
</li>
<li className={classnames({active: isActive('requests', fragment)})}>
<Link to="/requests">Requests {isActive('requests', fragment) && <span className="sr-only">(current)</span>}</Link>
</li>
<li className={classnames({active: isActive('tasks', fragment)})}>
<Link to="/tasks">Tasks {isActive('tasks', fragment) && <span className="sr-only">(current)</span>}</Link>
</li>
Expand Down
228 changes: 0 additions & 228 deletions SingularityUI/app/components/dashboard/DashboardPage.jsx

This file was deleted.

Loading