фикс некорректного ограничения центральной частоты

This commit is contained in:
2025-01-27 14:04:03 +03:00
parent 4d1b29b015
commit f9b919facf
6 changed files with 46 additions and 38 deletions

View File

@@ -22,6 +22,8 @@ def extract_param_names(mc):
copy_fields['min'] = widget['min']
if 'max' in widget:
copy_fields['max'] = widget['max']
if 'step' in widget:
copy_fields['step'] = widget['step']
match widget['widget']:
case 'select': return [{"initValue": widget['values'][0]['value']} | copy_fields]