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:
commit
9a11b89845
@ -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(
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user