Skip to content

Commit

Permalink
remove unnecessary test pipeline button
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Ohlsen <[email protected]>
  • Loading branch information
ohltyler committed Dec 6, 2024
1 parent 105a5bf commit 1d65c8d
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions public/pages/workflow_detail/workflow_inputs/workflow_inputs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ export function WorkflowInputs(props: WorkflowInputsProps) {
const onIngest = props.selectedStep === CONFIG_STEP.INGEST;
const onSearch = props.selectedStep === CONFIG_STEP.SEARCH;
const ingestEnabled = values?.ingest?.enabled || false;
const onSearchAndProvisioned = onSearch && searchProvisioned;
const onIngestAndUnprovisioned = onIngest && !ingestProvisioned;
const onIngestAndDisabled = onIngest && !ingestEnabled;
const isProposingNoSearchResources =
Expand Down Expand Up @@ -567,18 +566,6 @@ export function WorkflowInputs(props: WorkflowInputsProps) {
/>
</EuiFlexItem>
)}
{onSearchAndProvisioned && (
<EuiFlexItem grow={false}>
<EuiSmallButton
fill={false}
onClick={() => {
props.displaySearchPanel();
}}
>
Test pipeline
</EuiSmallButton>
</EuiFlexItem>
)}
</EuiFlexGroup>
</EuiFlexItem>
<EuiFlexItem
Expand Down

0 comments on commit 1d65c8d

Please sign in to comment.