-
Notifications
You must be signed in to change notification settings - Fork 349
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Runtime configuration wizard: existing runtime configuration information is "lost" #883
Comments
The existing metadata file content (with confidential information manually changed)
|
So I kinda tracked down the source of this issue. After I noticed it also existed on older (previously working) commits I tried installing an older version of lab and that fixed it. So some change between lab 2.2.4 and 2.2.5 broke that specific part of elyra for some reason. |
I tracked down what I believe to be the issue. The most recent lab release (v2.2.5) updated it's |
The latest release of JupyterLab updated to the latest release of blueprintjs core, which included an async bugfix for `InputGroup` which broke how our async update interacts with fields. Causing any already rendered `InputGroup` to not update it value on an async call to `uodate()` such as the one we do after calling the metadata api. I solved this by making the rendering of the display_name field conditional on the existance of an inital value, just like we already do with the other fields. Fixes elyra-ai#883
The latest release of JupyterLab updated to the latest release of blueprintjs core, which included an async bugfix for `InputGroup` which broke how our async update interacts with fields. Causing any already rendered `InputGroup` to not update it value on an async call to `update()` such as the one we do after calling the metadata API. I solved this by making the rendering of the display_name field conditional on the existence of an initial value, just like we already do with the other fields. Fixes #883
Follow-up to #847
I had created a runtime configuration with an earlier version of Elyra. Opening the configuration using the dev build that includes above PR the name and description in that configuration is not displayed:
The text was updated successfully, but these errors were encountered: