-
Notifications
You must be signed in to change notification settings - Fork 24
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
psp-9080 add missing LEASE_STAKEHOLDER_TYPE codes. #4286
Conversation
✅ No secrets were detected in the code. |
✅ No secrets were detected in the code. |
1 similar comment
✅ No secrets were detected in the code. |
@@ -100,10 +100,12 @@ export const Select: React.FC<React.PropsWithChildren<SelectProps>> = ({ | |||
}; | |||
|
|||
const renderPlaceholder = () => { | |||
if (!placeholder) { | |||
const calculatedPlaceholder = | |||
!value || options.find(option => option.value === value) ? null : 'N/A'; // Render N/A in the event that the currently selected value is not in the list. |
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.
Note: this is required, otherwise if a value is currently selected that is not in the options list, the select will default to showing the first value in the options list, even if that is not what the select's current value is. To correct this, the user would have to select the value which currently appears selected, which is not intuitive.
@@ -0,0 +1,53 @@ | |||
IF NOT EXISTS ( |
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.
It looks like Doug did a migration of the old values in the alter up, but forgot to add these new values. They are present in the BUILD.
3920487
to
9449008
Compare
✅ No secrets were detected in the code. |
No description provided.