Skip to content

Commit 336f945

Browse files
committed
Suppress "Parent Type" in title if not filtered
1 parent 174cfa5 commit 336f945

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/src/org/labkey/core/admin/AdminController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3688,7 +3688,7 @@ public AttachmentsForTypeAction()
36883688
public void addNavTrail(NavTree root)
36893689
{
36903690
String parentType = getViewContext().getActionURL().getParameter("core.ParentType~eq");
3691-
addAdminNavTrail(root, "Documents Belonging to Parent Type" + (parentType != null ? " \"" + parentType + "\"" : ""), getClass());
3691+
addAdminNavTrail(root, parentType != null ? "Documents Belonging to Parent Type \"" + parentType + "\"" : "Documents", getClass());
36923692
}
36933693
}
36943694

0 commit comments

Comments
 (0)