Make sure the label style for input text and radios match

This commit is contained in:
luis cielak
2018-08-08 13:54:10 -04:00
parent d582cf2a41
commit 74fc5f0ec9
2 changed files with 5 additions and 1 deletions

View File

@@ -62,7 +62,7 @@ class RequestForm(ValidatedForm):
)
engineering_assessment = RadioField(
description="Have you completed an engineering assessment of your software systems for cloud readiness?",
"Have you completed an engineering assessment of your software systems for cloud readiness?",
choices=[("yes", "Yes"), ("no", "No"), ("in_progress", "In Progress")],
)