Skip to content

Commit

Permalink
Fix parameter list not updating when the function configuration was c…
Browse files Browse the repository at this point in the history
…hanged
  • Loading branch information
D8H committed Jan 17, 2025
1 parent 5025e03 commit efcdd39
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,11 @@ export default class EventsFunctionConfigurationEditor extends React.Component<
eventsFunctionsContainer={eventsFunctionsContainer}
eventsFunctionsExtension={eventsFunctionsExtension}
helpPagePath={helpPagePath}
onConfigurationUpdated={onConfigurationUpdated}
onConfigurationUpdated={() => {
onConfigurationUpdated();
// A function configuration change may impact the parameters.
this.forceUpdate();
}}
renderConfigurationHeader={renderConfigurationHeader}
freezeEventsFunctionType={freezeEventsFunctionType}
getFunctionGroupNames={getFunctionGroupNames}
Expand Down

0 comments on commit efcdd39

Please sign in to comment.