Fix for study_details bug on testing

This commit is contained in:
mike cullerton 2021-05-17 09:32:55 -04:00
parent 8ca8c9ad85
commit 326ed53395
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ def study_details(study_id):
study_details = StudyDetails(STUDYID=study_id)
form = StudyDetailsForm(request.form, obj=study_details)
action = url_for("study_details", uva_id=study_id)
action = url_for("study_details", study_id=study_id)
title = "Edit Study Details for Study #" + study_id
details = "Numeric fields can be 1 for true, 0 or false, or Null if not applicable."