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
4 changes: 2 additions & 2 deletions luminex/src/org/labkey/luminex/LuminexUploadWizardAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -402,8 +402,8 @@ else if (titrationEntry.getValue().isStandard())
boolean existingSinglePointControl = existingSinglePointControls.contains(singlePointControl);

propertyName = getSinglePointControlCheckboxNameAndId(singlePointControl);
// If we have an existing singlePointControl as a baseline from the run we're replacing, use its value
defVal = existingSinglePointControl ? "true" : defaultWellRoleValues.get(propertyName);
// Issue 54242: If we are in the reRun case, use the existing singlePointControl value as baseline
defVal = reRun != null ? (existingSinglePointControl ? "true" : "false") : defaultWellRoleValues.get(propertyName);
value = setInitialSinglePointControlInput(errorReshow, propertyName, defVal) ? "true" : "";
view.getDataRegion().addHiddenFormField(propertyName, value);
}
Expand Down
Loading