mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
fix config panel readonly .value
This commit is contained in:
parent
363f8f13a3
commit
e1ceb084c3
1 changed files with 1 additions and 1 deletions
|
@ -609,7 +609,7 @@ class ConfigPanel:
|
||||||
{
|
{
|
||||||
question.id: question.value
|
question.id: question.value
|
||||||
for question in questions
|
for question in questions
|
||||||
if question.value is not None
|
if not question.readonly and question.value is not None
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue