-
Notifications
You must be signed in to change notification settings - Fork 62
fix(dynamic-component): Remove None from Enum field values #2798
fix(dynamic-component): Remove None from Enum field values #2798
Conversation
Ike Plugins (test-keeper)Thank you @jarifibrahim for this contribution! It appears that no tests have been added or updated in this PR. Automated tests give us confidence in shipping reliable software. Please add some as part of this change. If you are an admin or the reviewer of this PR and you are sure that no test is needed then you can use the command Your plugin configuration is stored in the file. |
90aef3b
to
1cb57cc
Compare
@jarifibrahim Your image is available in the registry. Run |
[test] |
@jarifibrahim Your image is available in the registry. Run |
/ok-without-tests |
@sahil143 how can this be okay without a test? |
@kwk We don't have the tests for the dropdowns. We test user interactions via |
I guess we have to find a way to test it though. Relying on tests that run in a different repo is not very cool because you cannot verify this. If everything was in monorepo things looks different I guess. |
@kwk No no. I can assure you this PR doesn't break anything 😉 . We have our own The QE team has their own e2e tests which cover the entire osio workflow (build, launcher, etc) and we have our own e2e tests that cover common planner workflows (only planner). |
Fixes openshiftio/openshift.io#3831 and openshiftio/openshift.io#3832 (comment)
This PR removes the unnecessary
None
field in the dropdown for enum types. The backend would always send a default value for enum fields.Before
Now