From 43e427d4ef7826190dc59c5e2e4ad804b59896be Mon Sep 17 00:00:00 2001 From: Patrick Smith Date: Tue, 10 Jul 2018 10:24:05 -0400 Subject: [PATCH] Make PE number input accept single string only --- atst/forms/financial.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atst/forms/financial.py b/atst/forms/financial.py index 5654495b..b4d551a5 100644 --- a/atst/forms/financial.py +++ b/atst/forms/financial.py @@ -15,8 +15,8 @@ class FinancialForm(Form): "Unique Item Identifier (UII)s related to your application(s) if you already have them." ) - pe_id = NewlineListField( - "Program Element (PE) Numbers related to your request" + pe_id = StringField( + "Program Element (PE) Number related to your request" ) fname_co = StringField("Contracting Officer First Name", validators=[Required()])