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

Hi,

  • jmix version, browser version? Jmix 2.7.4/ firefox 147.0.4 and Chromium 144.0.7559.109
  • is your computer the one you use to develop the application? yes
  • any errors in your log? nothing in logs
  • any errors in the server log? nothing in logs
  • security software (browser plugin, antivirus/IDP) blocking it? ubuntu no antivirus with all browser plugin disabled
  • do you log in as an administrator? Logged in as admin with system-full-access
    I tried adding -Pvaadin.productionMode=true

Thanks

Turn out I have the same problem on every website. It should be a bug on Ubuntu’s file browser, so no Jmix involved.
Thank you for taking the time

Might be a popupblocker …