Upload field not working

Hello,
the upload field is not working on my computer. it works on my colleagues’s and in production.
the problem:
on a new project I define a FileUploadField

    @Subscribe("helloName")
    private fun onHelloName(event: ActionPerformedEvent) {
        dialogs.createInputDialog(this)
            .withHeader("Enter values")
            .withLabelsPosition(Dialogs.InputDialogBuilder.LabelsPosition.TOP)
            .withParameters(
                InputParameter.parameter("config")
                    .withLabel("CSV configuration")
                    .withField { uiComponents.create(FileUploadField::class.java) as FileUploadField }
            )
            .withActions(DialogActions.OK_CANCEL)
            .withCloseListener( { closeEvent: InputDialogCloseEvent? ->
                if (closeEvent!!.closedWith(DialogOutcome.OK)) {
                    val configFile = closeEvent.getValue<File?>("config")
                }
            })
            .open()
    }

When I click on the upload file button, the file browser opens correctly. But when I pick a file nothing happen.
image
AbstractSingleUploadField.onStartedEvent is never called. There is nothing in the logs. All others components seems to work correctly.

Of course the problem comes from on my local configuration but I don’t know what to do or where to look at.
I updated Node.

best regards

Hello,

  • jmix version, browser version?
  • is your computer the one you use to develop the application?
  • any errors in your log?
  • any errors in the server log?
  • security software (browser plugin, antivirus/IDP) blocking it?
  • do you log in as an administrator? Try logging in as your colleague

Kind regards,
Mladen