Merge pull request #13727 from vvlladd28/bug/rule-node/math-function-default

Rule node UI: show 0 in the “Argument default value” field of the Math Function node
This commit is contained in:
Igor Kulikov 2025-07-17 16:04:27 +03:00 committed by GitHub
commit 9a11b89845
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -194,7 +194,7 @@ export class ArgumentsMapConfigComponent extends PageComponent implements Contro
key: [property?.key, [Validators.required]],
name: [ArgumentName[index], [Validators.required]],
attributeScope: [property?.attributeScope ?? AttributeScope.SERVER_SCOPE, [Validators.required]],
defaultValue: [property?.defaultValue ? property?.defaultValue : null]
defaultValue: [property?.defaultValue ?? null]
});
this.updateArgumentControlValidators(argumentControl);
argumentControl.get('type').valueChanges.pipe(