Removed default values for nested inputs

This commit is contained in:
Kir_Antipov 2022-08-21 15:21:52 +03:00
parent b6dd854b36
commit 7f684f107c

View file

@ -46,7 +46,10 @@ function processInputs(inputs: Record<string, ActionInput>) {
for (const publisher of publishers) { for (const publisher of publishers) {
for (const [name, input] of nestedInputs) { for (const [name, input] of nestedInputs) {
inputs[`${publisher}-${name}`] = { ...input }; inputs[`${publisher}-${name}`] = {
...input,
default: "${undefined}"
};
} }
} }