Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Alberto committed Oct 16, 2021
1 parent e672ef7 commit b72693c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/project_manager/generate_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ def generate_set_options(doc):
html += f" if({option_let} === undefined){{{option_let} = false;}}\n"
html += f" document.getElementById('{id_name}').checked = {option_let};\n"
elif(option_type == "input_comma"):
html += f" if({option_let} === undefined){{{option_let} = '';}}\n"
html += f" if({option_let} === undefined){{{option_let} = [];}}\n"
html += f" document.getElementById('{id_name}').value = {option_let}.join(',');\n"
elif(option_type == "subtitle"):
pass
Expand Down

0 comments on commit b72693c

Please # to comment.