Skip to content
Merged
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
11 changes: 7 additions & 4 deletions ms2/src/org/labkey/ms2/MS2Controller.java
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,13 @@ private NavTree appendRunNavTrail(NavTree root, MS2Run run, URLHelper runURL, St
{
appendRootNavTrail(root, null, page, helpTopic);

if (null != runURL)
root.addChild(run.getDescription(), runURL);
else
root.addChild(run.getDescription());
if (null != run)
{
if (null != runURL)
root.addChild(run.getDescription(), runURL);
else
root.addChild(run.getDescription());
}

if (null != title)
root.addChild(title);
Expand Down