diff --git a/newIDE/app/src/EventsFunctionsExtensionEditor/EventsFunctionConfigurationEditor/EventsFunctionParametersEditor.js b/newIDE/app/src/EventsFunctionsExtensionEditor/EventsFunctionConfigurationEditor/EventsFunctionParametersEditor.js index beb2d54ed4a1..eaa864a874d0 100644 --- a/newIDE/app/src/EventsFunctionsExtensionEditor/EventsFunctionConfigurationEditor/EventsFunctionParametersEditor.js +++ b/newIDE/app/src/EventsFunctionsExtensionEditor/EventsFunctionConfigurationEditor/EventsFunctionParametersEditor.js @@ -644,6 +644,9 @@ export const EventsFunctionParametersEditor = ({ translatableHintText={t`Enter the parameter name (mandatory)`} value={parameter.getName()} onChange={newName => { + if (newName === parameter.getName()) { + return; + } const projectScopedContainers = projectScopedContainersAccessor.get(); const validatedNewName = getValidatedParameterName( parameters,