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
2 changes: 1 addition & 1 deletion elisa/src/org/labkey/elisa/ElisaAssayProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ public ModelAndView createRunDetailsView(ViewContext context, ExpProtocol protoc

ElisaController.RunDetailsForm form = new ElisaController.RunDetailsForm();
form.setProtocolId(protocol.getRowId());
form.setSchemaName(schema.getPath().toString());
form.setSchemaName(schema.getSchemaPath().toString());
form.setRunId(run.getRowId());
form.setRunName(run.getName());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ public ModelAndView getView(FeatureAnnotationSetForm form, BindException errors)
dr.addColumns(new ArrayList<>(columns.values()));

ButtonBar bb = new ButtonBar();
ActionURL editURL = QueryService.get().urlDefault(getContainer(), QueryAction.updateQueryRow, schema.getPath().toString(), featureAnnotationSetTable.getName());
ActionURL editURL = QueryService.get().urlDefault(getContainer(), QueryAction.updateQueryRow, schema.getSchemaPath().toString(), featureAnnotationSetTable.getName());
editURL.addParameter("RowId", form.getRowId());
editURL.addReturnURL(getViewContext().getActionURL());

Expand Down