-
- Configure query
-
+
+ Configure query
+
@@ -100,7 +99,7 @@ export function ConfigureSearchRequest(props: ConfigureSearchRequestProps) {
(option) =>
({
value: option.name,
- inputDisplay: {option.name},
+ inputDisplay: {option.name},
disabled: false,
} as EuiSuperSelectOption)
)}
diff --git a/public/pages/workflow_detail/workflow_inputs/search_inputs/edit_query_modal.tsx b/public/pages/workflow_detail/workflow_inputs/search_inputs/edit_query_modal.tsx
index 7794cf1c..4a639977 100644
--- a/public/pages/workflow_detail/workflow_inputs/search_inputs/edit_query_modal.tsx
+++ b/public/pages/workflow_detail/workflow_inputs/search_inputs/edit_query_modal.tsx
@@ -66,6 +66,7 @@ export function EditQueryModal(props: EditQueryModalProps) {
anchorPosition="downLeft"
>
-
+
The resources for this workflow will be permanently deleted.
This action cannot be undone.
@@ -725,7 +724,7 @@ export function WorkflowInputs(props: WorkflowInputsProps) {
}}
>
-
+
{onIngestAndUnprovisioned ? (
'Define ingest pipeline'
@@ -748,7 +747,7 @@ export function WorkflowInputs(props: WorkflowInputsProps) {
'Define search pipeline'
)}
-
+
{onIngest ? (
<>
diff --git a/public/pages/workflow_detail/workspace/workspace.tsx b/public/pages/workflow_detail/workspace/workspace.tsx
index 5c618722..fb795369 100644
--- a/public/pages/workflow_detail/workspace/workspace.tsx
+++ b/public/pages/workflow_detail/workspace/workspace.tsx
@@ -16,7 +16,6 @@ import ReactFlow, {
import {
EuiFlexItem,
EuiFlexGroup,
- EuiTitle,
EuiFilterGroup,
EuiFilterButton,
EuiCodeEditor,
@@ -127,14 +126,14 @@ export function Workspace(props: WorkspaceProps) {
-
+
Preview
-
+
toggleSelection()}
data-testid="workspaceVisualButton"
@@ -142,7 +141,7 @@ export function Workspace(props: WorkspaceProps) {
Visual
toggleSelection()}
data-testid="workspaceJSONButton"
@@ -153,11 +152,11 @@ export function Workspace(props: WorkspaceProps) {
{visualSelected ? (
-
+
{`A basic visual view representing the configured ingest & search flows.`}
) : (
-
+
{`The Flow Framework provisioning template describing how to build out the configured resources. `}
Learn more
diff --git a/public/pages/workflow_detail/workspace/workspace_components/group_component.tsx b/public/pages/workflow_detail/workspace/workspace_components/group_component.tsx
index 3f34c958..359d7d4e 100644
--- a/public/pages/workflow_detail/workspace/workspace_components/group_component.tsx
+++ b/public/pages/workflow_detail/workspace/workspace_components/group_component.tsx
@@ -4,7 +4,7 @@
*/
import React from 'react';
-import { EuiFlexGroup, EuiFlexItem, EuiTitle } from '@elastic/eui';
+import { EuiFlexGroup, EuiFlexItem, EuiText } from '@elastic/eui';
interface GroupComponentProps {
data: { label: string };
@@ -20,9 +20,9 @@ export function GroupComponent(props: GroupComponentProps) {
// overlapping the group node title
-
+
{props.data.label}
-
+
diff --git a/public/pages/workflow_detail/workspace/workspace_components/workspace_component.tsx b/public/pages/workflow_detail/workspace/workspace_components/workspace_component.tsx
index fb245a1c..41ce1ae8 100644
--- a/public/pages/workflow_detail/workspace/workspace_components/workspace_component.tsx
+++ b/public/pages/workflow_detail/workspace/workspace_components/workspace_component.tsx
@@ -9,7 +9,6 @@ import {
EuiFlexItem,
EuiCard,
EuiText,
- EuiTitle,
EuiSpacer,
} from '@elastic/eui';
import { IComponentData } from '../../../../../common';
@@ -38,9 +37,9 @@ export function WorkspaceComponent(props: WorkspaceComponentProps) {
title={
-
+
{component.label}
-
+
diff --git a/public/pages/workflows/empty_list_message.tsx b/public/pages/workflows/empty_list_message.tsx
index e30cd343..9b02e226 100644
--- a/public/pages/workflows/empty_list_message.tsx
+++ b/public/pages/workflows/empty_list_message.tsx
@@ -10,7 +10,6 @@ import {
EuiFlexItem,
EuiSpacer,
EuiText,
- EuiTitle,
} from '@elastic/eui';
interface EmptyListMessageProps {
@@ -24,9 +23,9 @@ export function EmptyListMessage(props: EmptyListMessageProps) {
-
+
No workflows found
-
+
diff --git a/public/pages/workflows/new_workflow/use_case.tsx b/public/pages/workflows/new_workflow/use_case.tsx
index 741b9aa1..6c74bce5 100644
--- a/public/pages/workflows/new_workflow/use_case.tsx
+++ b/public/pages/workflows/new_workflow/use_case.tsx
@@ -8,7 +8,6 @@ import {
EuiText,
EuiFlexGroup,
EuiFlexItem,
- EuiTitle,
EuiCard,
EuiHorizontalRule,
EuiSmallButton,
@@ -34,9 +33,9 @@ export function UseCase(props: UseCaseProps) {
)}
- {props.workflow.name}
-
+
+ {props.workflow.name}
+
}
titleSize="s"
paddingSize="l"
@@ -45,7 +44,7 @@ export function UseCase(props: UseCaseProps) {
- {props.workflow.description}
+ {props.workflow.description}
diff --git a/public/pages/workflows/workflow_list/delete_workflow_modal.tsx b/public/pages/workflows/workflow_list/delete_workflow_modal.tsx
index 649e5723..f542ffae 100644
--- a/public/pages/workflows/workflow_list/delete_workflow_modal.tsx
+++ b/public/pages/workflows/workflow_list/delete_workflow_modal.tsx
@@ -83,7 +83,9 @@ export function DeleteWorkflowModal(props: DeleteWorkflowModalProps) {
- The workflow will be permanently deleted.
+
+ The workflow will be permanently deleted.
+
setIsResourcesFlyoutOpen(false)}
>
-
+
{`Active resources with ${getCharacterLimitedString(
selectedWorkflow.name,
MAX_WORKFLOW_NAME_TO_DISPLAY
)}`}
-
+
diff --git a/public/pages/workflows/workflows.tsx b/public/pages/workflows/workflows.tsx
index e4b81456..e13541a8 100644
--- a/public/pages/workflows/workflows.tsx
+++ b/public/pages/workflows/workflows.tsx
@@ -8,7 +8,6 @@ import { RouteComponentProps, useLocation } from 'react-router-dom';
import { escape } from 'lodash';
import {
EuiPageHeader,
- EuiTitle,
EuiPage,
EuiPageBody,
EuiPageContent,
@@ -219,9 +218,9 @@ export function Workflows(props: WorkflowsProps) {
/>
) : (
-
+
{PLUGIN_NAME}
-
+
{DESCRIPTION}
);
@@ -267,13 +266,13 @@ export function Workflows(props: WorkflowsProps) {
+
{selectedTabId === WORKFLOWS_TAB.MANAGE
? 'Workflows'
: 'Create from a template'}
-
+
}
rightSideItems={
selectedTabId === WORKFLOWS_TAB.MANAGE
@@ -289,6 +288,7 @@ export function Workflows(props: WorkflowsProps) {
dataSourceId
);
}}
+ iconType="plus"
data-testid="createWorkflowButton"
>
Create workflow