Skip to content
Open
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
8 changes: 4 additions & 4 deletions flow/src/org/labkey/flow/view/FlowQueryView.java
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ protected ActionButton createDeleteButton(boolean showConfirmation, boolean useE
{
// The Analysis "folder" table needs to use the getDeleteProtocolURL, the FCSRuns and FCSAnalysis 'views' need the getDeleteSelectedExpRunsURL
if (useExpRunsURL)
setDeleteURL(ExperimentUrls.get().getDeleteSelectedExpRunsURL(getContainer(), getReturnUrl()).toContainerRelativeURL());
setDeleteURL(ExperimentUrls.get().getDeleteSelectedExpRunsURL(getContainer(), getReturnUrl()).toRelativeURL());
return super.createDeleteButton(showConfirmation);
}

Expand Down Expand Up @@ -273,7 +273,7 @@ protected void populateButtonBar(DataView view, ButtonBar bar)

super.populateButtonBar(view, bar);

// NOTE: Only add "Link to Study" to FCSAnlayses wells. This isn't a reliable way to check if the wells are FCSAnalysis wells.
// NOTE: Only add "Link to Study" to FCSAnalyses wells. This isn't a reliable way to check if the wells are FCSAnalysis wells.
StudyPublishService aps = StudyPublishService.get();
String queryName = getSettings().getQueryName();
if (null != aps && queryName.equals(FlowTableType.FCSAnalyses.toString()))
Expand Down Expand Up @@ -393,11 +393,11 @@ public NavTrailConfig getNavTrailConfig()
List<NavTree> children = new ArrayList<>();
if (getContainer().getFolderType() instanceof FlowFolderType)
{
children.add(0, new NavTree("Flow Dashboard", PageFlowUtil.urlProvider(ProjectUrls.class).getStartURL(getContainer())));
children.addFirst(new NavTree("Flow Dashboard", PageFlowUtil.urlProvider(ProjectUrls.class).getStartURL(getContainer())));
}
else
{
children.add(0, new NavTree(FlowModule.getShortProductName(), new ActionURL(FlowController.BeginAction.class, getContainer())));
children.addFirst(new NavTree(FlowModule.getShortProductName(), new ActionURL(FlowController.BeginAction.class, getContainer())));
}
if (run != null)
{
Expand Down