From e1ceb084c3df75e37be4fbde97c075ee75d775cf Mon Sep 17 00:00:00 2001 From: axolotle Date: Tue, 18 Jul 2023 15:05:07 +0200 Subject: [PATCH] fix config panel readonly .value --- src/utils/configpanel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/configpanel.py b/src/utils/configpanel.py index 42a030cbc..ee9019303 100644 --- a/src/utils/configpanel.py +++ b/src/utils/configpanel.py @@ -609,7 +609,7 @@ class ConfigPanel: { question.id: question.value for question in questions - if question.value is not None + if not question.readonly and question.value is not None } )