From 26520c9c785096f371ca78624e70d86e74012bfb Mon Sep 17 00:00:00 2001 From: Bryce Willey Date: Mon, 18 Dec 2023 10:13:15 -0500 Subject: [PATCH] Fix cross reference error and typo --- docassemble/AppearanceEfile/data/questions/efile_ports.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docassemble/AppearanceEfile/data/questions/efile_ports.yml b/docassemble/AppearanceEfile/data/questions/efile_ports.yml index 1f84ba3..beb383c 100644 --- a/docassemble/AppearanceEfile/data/questions/efile_ports.yml +++ b/docassemble/AppearanceEfile/data/questions/efile_ports.yml @@ -17,7 +17,7 @@ id: filing description question: | Is there anything you would like to tell the Clerk about your forms? subquestion: | - These comments will not appear on your cont forms. + These comments will not appear on your court forms. % if not filing_description_datafield.get('isrequired'): This is optional. You can click **Next** to skip. @@ -532,8 +532,10 @@ code: | # DuPage's Attorney/Firm Number / SRL Number. The SRL number is 99500. if len(cross_ref_type_map) == 1: cross_references.new_item_name = next(iter(cross_ref_type_map)) - if cross_references.new_item_name == "136524": + if cross_references.new_item_name == "136524" or cross_references.new_item_name == "134531": cross_references.new_item_value = "99500" + else: + del cross_references.new_item_name --- code: | if len(cross_ref_type_map) == 1: