-
Notifications
You must be signed in to change notification settings - Fork 14
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
fix(KFLUXBUGS-1342): add existing secret in the components secret form #61
Conversation
9d4dfa4
to
d8051ea
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #61 +/- ##
==========================================
- Coverage 80.11% 80.09% -0.02%
==========================================
Files 570 570
Lines 21452 21476 +24
Branches 5050 5062 +12
==========================================
+ Hits 17187 17202 +15
- Misses 4241 4250 +9
Partials 24 24
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Let me know when you will have it ready. Will pull it and try it out. |
f48167f
to
b8dafd3
Compare
/retest |
I believe this can be safely ignored |
fix: list existing secret in build time secret modal fix: adjust types in secret form
b8dafd3
to
242b25c
Compare
LGTM. Just wondering, is the |
src/components/ImportForm/type.ts
Outdated
importSecrets?: ImportSecret[]; | ||
newSecrets?: string[]; | ||
importSecrets?: SecretFormValues[]; | ||
newSecrets?: ExistingSecret[]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMO a little confusing when the newSecrets
property has the type ExistingSecret
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch!
Changed to BuildTimeSecret
The |
LGTM |
LGTM |
Fixes
KFLUXBUGS-1342
Description
When onboarding a new component and adding a build time secret, the dialog cannot find an existing secret in the workspace.