From 36a34e0c1d129b6118025d680c64e34cd5a88f4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Genevi=C3=A8ve=20Bastien?= Date: Mon, 8 Apr 2024 12:06:17 -0400 Subject: [PATCH] generator: Fix last section navigation Change `<` to `<=` so that the last section can be reached. --- .../src/scripts/generate_section_configs.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/evolution-generator/src/scripts/generate_section_configs.py b/packages/evolution-generator/src/scripts/generate_section_configs.py index 3f74b372..3dfcc72d 100644 --- a/packages/evolution-generator/src/scripts/generate_section_configs.py +++ b/packages/evolution-generator/src/scripts/generate_section_configs.py @@ -72,7 +72,6 @@ def generate_section_configs(excel_file_path: str): # Generate code for section def generate_section_code(previousSection, nextSection): ts_section_code = "" # TypeScript code for the section - # TODO: Do this with survey_folder_path # Get section output file section_output_file = ( @@ -107,7 +106,7 @@ def generate_section_code(previousSection, nextSection): # Generate nextSectionName # Check if there is a next row - if row_number < len(rows) - 1: + if row_number <= len(rows) - 1: next_row = rows[row_number] # Get the next row # Get the next section from the next row nextSection = get_values_from_row(next_row, headers)[0]