[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2025-10-30 09:08:11 +00:00
committed by GitHub
parent 8cbd124b80
commit eb3b5f751a
32 changed files with 151 additions and 142 deletions

View File

@ -315,7 +315,7 @@ const FormInputItem: FC<Props> = ({
onChange({
...value,
[variable]: {
...(varInput || {}),
...varInput,
type: VarKindType.constant,
value: selected,
},

View File

@ -186,7 +186,7 @@ const useConfig = (id: string, payload: PluginTriggerNodeType) => {
(variable: InputVar, varDetail: InputVar) => {
const newInputs = produce(inputs, (draft) => {
const nextEventParameters = normalizeEventParameters({
...(draft.event_parameters || {}),
...draft.event_parameters,
[variable.variable]: {
type: VarKindType.variable,
value: varDetail.variable,