Skip to content

Commit

Permalink
apps: fix another case of no attribute 'value' due to config panels/q…
Browse files Browse the repository at this point in the history
…uestions refactoring
  • Loading branch information
alexAubin committed Jul 21, 2023
1 parent 53bc30b commit 4fda8ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -1098,7 +1098,7 @@ def app_install(
args = {
question.id: question.value
for question in questions
if question.value is not None
if not question.readonly and question.value is not None
}

# Validate domain / path availability for webapps
Expand Down

0 comments on commit 4fda8ed

Please sign in to comment.