-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Change pipeline selector dropdown to selection list #172330
Conversation
pipeline: MLInferencePipelineOption; | ||
} | ||
|
||
// TODO: Make disabledReason required and remove EXISTING_PIPELINE_DISABLED_MISSING_SOURCE_FIELDS call without args |
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.
This is here to serve as a reminder to address this in a separate tech debt PR
); | ||
}; | ||
|
||
export const PipelineSelectOption: React.FC<PipelineSelectOptionProps> = ({ pipeline }) => { | ||
const modelIdDisplay = pipeline.modelId.length > 0 ? pipeline.modelId : MODEL_REDACTED_VALUE; | ||
return ( | ||
<EuiFlexGroup direction="column" gutterSize="none"> | ||
// TODO: Add model state & pipeline info link. Make sure to check mobile rendering when doing this! |
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.
Model state & pipeline info link was originally in scope, but was removed in the interest of meeting 8.12 FF. It will be added in a follow-up PR.
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.
LGTM with 1 comment, great job!
...ise_search_content/components/search_index/pipelines/ml_inference/pipeline_select_option.tsx
Outdated
Show resolved
Hide resolved
Co-authored-by: Adam Demjen <[email protected]>
...enterprise_search_content/components/search_index/pipelines/ml_inference/pipeline_select.tsx
Outdated
Show resolved
Hide resolved
...ise_search_content/components/search_index/pipelines/ml_inference/pipeline_select_option.tsx
Outdated
Show resolved
Hide resolved
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.
LGTM
💚 Build Succeeded
Metrics [docs]Module Count
Async chunks
History
To update your PR or re-run it, just comment with: |
Summary
In the "Add inference pipeline" flyout, change the existing pipeline selector dropdown to a selection list with search. Also re-organize the option layout to more closely match the layout implemented for ML pipeline cards in #172209.
Old:
New:
Checklist