diff --git a/examples/controls_example/public/app/react_control_example/react_control_example.tsx b/examples/controls_example/public/app/react_control_example/react_control_example.tsx index 20960f1dc8d17..f437906fb87a5 100644 --- a/examples/controls_example/public/app/react_control_example/react_control_example.tsx +++ b/examples/controls_example/public/app/react_control_example/react_control_example.tsx @@ -274,12 +274,15 @@ export const ReactControlExample = ({ return ( <> {dataViewNotFound && ( - +

{`Install "Sample web logs" to run example`}

)} {!dataViewNotFound && ( - + { > {showLibraryCallout && ( { /> {currentWarnings.length ? ( - +

Here the list of warnings:

    {currentWarnings.map((message) => ( diff --git a/examples/partial_results_example/public/app/app.tsx b/examples/partial_results_example/public/app/app.tsx index a9de74c4ef105..fb24110c27a5c 100644 --- a/examples/partial_results_example/public/app/app.tsx +++ b/examples/partial_results_example/public/app/app.tsx @@ -66,7 +66,7 @@ export function App() { items={datatable.rows ?? []} /> ) : ( - +

    Click or press any key.

    )} diff --git a/examples/response_stream/public/containers/app/pages/page_simple_string_stream/index.tsx b/examples/response_stream/public/containers/app/pages/page_simple_string_stream/index.tsx index e525877306f68..667c5ab545b53 100644 --- a/examples/response_stream/public/containers/app/pages/page_simple_string_stream/index.tsx +++ b/examples/response_stream/public/containers/app/pages/page_simple_string_stream/index.tsx @@ -91,7 +91,12 @@ export const PageSimpleStringStream: FC = () => {

    {data}

    {errors.length > 0 && ( - + {errors.length === 1 ? (

    {errors[0]}

    ) : ( diff --git a/examples/routing_example/public/get_message_example.tsx b/examples/routing_example/public/get_message_example.tsx index 95fbf16d59e2f..b3bb462d4843f 100644 --- a/examples/routing_example/public/get_message_example.tsx +++ b/examples/routing_example/public/get_message_example.tsx @@ -71,7 +71,7 @@ export function GetMessageRouteExample({ getMessageById }: Props) { {error !== undefined ? ( - + {error.message} ) : null} diff --git a/examples/routing_example/public/post_message_example.tsx b/examples/routing_example/public/post_message_example.tsx index 69f0b749858bd..dac18ff529dd5 100644 --- a/examples/routing_example/public/post_message_example.tsx +++ b/examples/routing_example/public/post_message_example.tsx @@ -83,7 +83,7 @@ export function PostMessageRouteExample({ postMessage, addSuccessToast }: Props) {error !== undefined ? ( - + {error.message} ) : null} diff --git a/examples/routing_example/public/random_number_between_example.tsx b/examples/routing_example/public/random_number_between_example.tsx index 8567587e0fb73..fa61b42c2213d 100644 --- a/examples/routing_example/public/random_number_between_example.tsx +++ b/examples/routing_example/public/random_number_between_example.tsx @@ -72,7 +72,7 @@ export function RandomNumberBetweenRouteExample({ fetchRandomNumberBetween }: Pr {error !== undefined ? ( - + {error.message} ) : null} diff --git a/examples/routing_example/public/random_number_example.tsx b/examples/routing_example/public/random_number_example.tsx index 889376f66f25e..8c7bbca242405 100644 --- a/examples/routing_example/public/random_number_example.tsx +++ b/examples/routing_example/public/random_number_example.tsx @@ -53,7 +53,7 @@ export function RandomNumberRouteExample({ fetchRandomNumber }: Props) { {error !== undefined ? ( - + {JSON.stringify(error)} ) : null} diff --git a/src/platform/packages/shared/cloud/connection_details/tabs/api_keys_tab/views/configuration_form/configuration_form_controlled.tsx b/src/platform/packages/shared/cloud/connection_details/tabs/api_keys_tab/views/configuration_form/configuration_form_controlled.tsx index ee6062d867dc5..7f544615a1544 100644 --- a/src/platform/packages/shared/cloud/connection_details/tabs/api_keys_tab/views/configuration_form/configuration_form_controlled.tsx +++ b/src/platform/packages/shared/cloud/connection_details/tabs/api_keys_tab/views/configuration_form/configuration_form_controlled.tsx @@ -41,6 +41,7 @@ export const ConfigurationFormControlled: React.FC - +
      {warningMessages.map((message) => (
    • {message}
    • diff --git a/src/platform/packages/shared/content-management/content_editor/src/components/metadata_form.tsx b/src/platform/packages/shared/content-management/content_editor/src/components/metadata_form.tsx index 191645ae65260..6baa65f9bf667 100644 --- a/src/platform/packages/shared/content-management/content_editor/src/components/metadata_form.tsx +++ b/src/platform/packages/shared/content-management/content_editor/src/components/metadata_form.tsx @@ -61,7 +61,9 @@ export const MetadataForm: FC> = ({ return ( - {isReadonly && } + {isReadonly && ( + + )} { ))} - +

      {selectedTab.callOutText}

      diff --git a/src/platform/packages/shared/kbn-search-connectors/components/configuration/connector_configuration.tsx b/src/platform/packages/shared/kbn-search-connectors/components/configuration/connector_configuration.tsx index cfe4073d75e2d..d919130a5982a 100644 --- a/src/platform/packages/shared/kbn-search-connectors/components/configuration/connector_configuration.tsx +++ b/src/platform/packages/shared/kbn-search-connectors/components/configuration/connector_configuration.tsx @@ -147,6 +147,7 @@ export const ConnectorConfigurationComponent: FC< {!uncategorizedDisplayList.length && ( = ({ syncJob }) => {!!syncJob.completed_at && ( = ({ syncJob }) => {syncJob.status === SyncStatus.ERROR && ( = ({ syncJob }) => {syncJob.status === SyncStatus.CANCELED && ( = ({ syncJob }) => {syncJob.status === SyncStatus.IN_PROGRESS && ( = ({ syncJob }) => {!!syncJob.started_at && ( comparisonFields.length ? ( { {warning ? ( <> - + ) : null} diff --git a/src/platform/packages/shared/response-ops/rule_form/src/rule_flyout/rule_flyout_body.tsx b/src/platform/packages/shared/response-ops/rule_form/src/rule_flyout/rule_flyout_body.tsx index 0e3f0c3076771..814652f2eb03a 100644 --- a/src/platform/packages/shared/response-ops/rule_form/src/rule_flyout/rule_flyout_body.tsx +++ b/src/platform/packages/shared/response-ops/rule_form/src/rule_flyout/rule_flyout_body.tsx @@ -158,6 +158,7 @@ export const RuleFlyoutBody = ({ {hasActionsDisabled && ( <> { {hasActionsDisabled && ( <> = ({ selectedNode }) => { console.error(serializeError); return ( { expect(wrapper).toMatchInlineSnapshot(` { expect(wrapper).toMatchInlineSnapshot(` { expect(wrapper).toMatchInlineSnapshot(` = (p ) { return ( { if (error) { return ( {dataViewListError ? ( {fieldListError ? ( +

      { {isSubmitted && errors.length > 0 && ( <> err.message)} color="danger" iconType="cross" diff --git a/src/platform/plugins/shared/data_view_field_editor/public/components/preview/field_preview.tsx b/src/platform/plugins/shared/data_view_field_editor/public/components/preview/field_preview.tsx index dd90814886218..47c4c44ef18b7 100644 --- a/src/platform/plugins/shared/data_view_field_editor/public/components/preview/field_preview.tsx +++ b/src/platform/plugins/shared/data_view_field_editor/public/components/preview/field_preview.tsx @@ -92,6 +92,7 @@ export const FieldPreview = () => { {showWarningPreviewNotAvailable ? ( = ({

      {showRelationshipsCallout ? ( <> - + ) : ( - + )}
      diff --git a/src/platform/plugins/shared/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx b/src/platform/plugins/shared/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx index 5b1f66d1f9ca5..9abee203dd41f 100644 --- a/src/platform/plugins/shared/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx +++ b/src/platform/plugins/shared/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx @@ -240,6 +240,7 @@ export const EditIndexPattern = withRouter( <> { return isVisible ? ( { if (previewData.error) { return ( {reqState === ElasticRequestState.NotFoundDataView && ( + {' '} diff --git a/src/platform/plugins/shared/discover/public/application/main/components/layout/selected_vs_available_callout.tsx b/src/platform/plugins/shared/discover/public/application/main/components/layout/selected_vs_available_callout.tsx index 251a5c665e4ad..20b786f31a03b 100644 --- a/src/platform/plugins/shared/discover/public/application/main/components/layout/selected_vs_available_callout.tsx +++ b/src/platform/plugins/shared/discover/public/application/main/components/layout/selected_vs_available_callout.tsx @@ -31,6 +31,7 @@ export const SelectedVSAvailableCallout = ({ selectedColumns.length > 0 && selectedColumns.length < esqlQueryColumns.length && ( {clusterDetails.timed_out ? ( = ({ {hiddenObjects.length > 0 && ( <> = ({ {sharedObjectsCount > 0 && ( <> {isAbsoluteTimeByDefault && ( { if (!hasPrivilegeToRead) { return ( { if (data === null) { return ( > = ({ if (!!triggers && !triggers.items.length) { // Below callout is not translated, because this message is only for developers. return ( - +

      No triggers provided in triggers prop.

      diff --git a/src/platform/plugins/shared/unified_doc_viewer/public/components/doc_viewer_table/table_grid.tsx b/src/platform/plugins/shared/unified_doc_viewer/public/components/doc_viewer_table/table_grid.tsx index 0c07420529c4d..b85a0dc46992a 100644 --- a/src/platform/plugins/shared/unified_doc_viewer/public/components/doc_viewer_table/table_grid.tsx +++ b/src/platform/plugins/shared/unified_doc_viewer/public/components/doc_viewer_table/table_grid.tsx @@ -216,7 +216,7 @@ export function TableGrid({ {Boolean(warningMessage) && (
      - +
      )} diff --git a/src/platform/plugins/shared/visualizations/public/visualize_app/components/visualize_no_match.tsx b/src/platform/plugins/shared/visualizations/public/visualize_app/components/visualize_no_match.tsx index 0c9195835d237..b9766f703bbb6 100644 --- a/src/platform/plugins/shared/visualizations/public/visualize_app/components/visualize_no_match.tsx +++ b/src/platform/plugins/shared/visualizations/public/visualize_app/components/visualize_no_match.tsx @@ -37,7 +37,7 @@ export const VisualizeNoMatch = () => { bannerId = services.overlays.banners.replace( bannerId, toMountPoint( - +

      {errors}

      diff --git a/x-pack/examples/alerting_example/public/alert_types/astros.tsx b/x-pack/examples/alerting_example/public/alert_types/astros.tsx index a1520b7b4453f..d6986f284ad9a 100644 --- a/x-pack/examples/alerting_example/public/alert_types/astros.tsx +++ b/x-pack/examples/alerting_example/public/alert_types/astros.tsx @@ -139,7 +139,12 @@ export const PeopleinSpaceExpression: React.FunctionComponent {errorsCallout.length ? ( - + {errorsCallout} ) : ( diff --git a/x-pack/examples/alerting_example/public/components/view_alert.tsx b/x-pack/examples/alerting_example/public/components/view_alert.tsx index 0ce708c846198..5eff64505572f 100644 --- a/x-pack/examples/alerting_example/public/components/view_alert.tsx +++ b/x-pack/examples/alerting_example/public/components/view_alert.tsx @@ -51,7 +51,7 @@ export const ViewAlertPage = withRouter(({ http, id }: Props) => { return alert && alertState ? ( - +

      This is a generic view for all Rules created by the {ALERTING_EXAMPLE_APP_ID} @@ -72,12 +72,12 @@ export const ViewAlertPage = withRouter(({ http, id }: Props) => {

      Alerts

      {isEmpty(alertState.alerts) ? ( - +

      This Rule doesn't have any active alerts at the moment.

      ) : ( - +

      Below are the active Alerts which were activated on the rules last run.
      diff --git a/x-pack/examples/alerting_example/public/components/view_astros_alert.tsx b/x-pack/examples/alerting_example/public/components/view_astros_alert.tsx index 289d803f0dc05..9be3f4bfa08fd 100644 --- a/x-pack/examples/alerting_example/public/components/view_astros_alert.tsx +++ b/x-pack/examples/alerting_example/public/components/view_astros_alert.tsx @@ -59,7 +59,7 @@ export const ViewPeopleInSpaceAlertPage = withRouter(({ http, id }: Props) => { return alert && alertState ? ( - +

      This is a specific view for all example.people-in-space Rules created by the @@ -72,7 +72,7 @@ export const ViewPeopleInSpaceAlertPage = withRouter(({ http, id }: Props) => {

      Alerts

      {isEmpty(alertState.alerts) ? ( - +

      The people in {alert.params.craft as string} at the moment are not{' '} {alert.params.op as string} {alert.params.outerSpaceCapacity as string} @@ -80,7 +80,7 @@ export const ViewPeopleInSpaceAlertPage = withRouter(({ http, id }: Props) => { ) : ( - +

      The rule has been triggered because the people in {alert.params.craft as string} at the moment {alert.params.op as string} {alert.params.outerSpaceCapacity as string} diff --git a/x-pack/examples/embedded_lens_example/public/mount.tsx b/x-pack/examples/embedded_lens_example/public/mount.tsx index 2daf189d77c62..f14e2881bf43d 100644 --- a/x-pack/examples/embedded_lens_example/public/mount.tsx +++ b/x-pack/examples/embedded_lens_example/public/mount.tsx @@ -27,6 +27,7 @@ export const mount = ) : ( ) : ( {hasParsingErrorDebounced && currentSO.current !== currentValid && ( - +

      Check the spec

      )} diff --git a/x-pack/examples/testing_embedded_lens/public/mount.tsx b/x-pack/examples/testing_embedded_lens/public/mount.tsx index 6025df6fb6088..0162c55855db2 100644 --- a/x-pack/examples/testing_embedded_lens/public/mount.tsx +++ b/x-pack/examples/testing_embedded_lens/public/mount.tsx @@ -44,6 +44,7 @@ export const mount = /> ) : ( = memo(
      {isWithHeader(props) && } = memo(
      {isWithHeader(props) && } = memo( if (errorMessage && !errorMessage.includes('failed to create query')) { errorCallout = ( = memo( } else { errorCallout = ( = memo( {ccsWarning && (
      { {helpText && ( <> - + )} diff --git a/x-pack/platform/packages/shared/kbn-ai-assistant/src/chat/chat_body.tsx b/x-pack/platform/packages/shared/kbn-ai-assistant/src/chat/chat_body.tsx index b1199ccbacc1d..c5cd149db41b4 100644 --- a/x-pack/platform/packages/shared/kbn-ai-assistant/src/chat/chat_body.tsx +++ b/x-pack/platform/packages/shared/kbn-ai-assistant/src/chat/chat_body.tsx @@ -656,6 +656,7 @@ export function ChatBody({ > {conversation.error ? ( = ({ ); return localStorageShowConversation && selectedConversation ? ( = React.memo(({ isConnecto <> {showMissingCallout ? ( = ({ <> = ({ {meta.totalItemCount > 9999 && ( = ({ {responseError && ( <> = ({ !isOwner ? ( <> = ({ ) : hasExpired ? ( <> = ({ variables, selectedVar, onCancel, onSave }) {!isNew && (
      = ({ > - + diff --git a/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/stats_table/components/field_data_expanded_row/text_content.tsx b/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/stats_table/components/field_data_expanded_row/text_content.tsx index 1cae50e2bde57..4b6909a936f83 100644 --- a/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/stats_table/components/field_data_expanded_row/text_content.tsx +++ b/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/stats_table/components/field_data_expanded_row/text_content.tsx @@ -33,6 +33,7 @@ export const TextContent: FC = ({ config }) => { = ({ results }) => { = (dataVi {unsupportedReasonForQuery ? ( = ({ > {isNewPanel ? ( { if (!isEsqlEnabled) { return ( { if (this.props.failedPermissionCheck) { return ( { : ''; return ( { if (this.props.importResults.failures?.length) { return ( - +

      {i18n.translate('xpack.graph.topNavMenu.save.saveConfigurationOnlyText', { defaultMessage: diff --git a/x-pack/platform/plugins/private/graph/public/components/settings/blocklist_form.tsx b/x-pack/platform/plugins/private/graph/public/components/settings/blocklist_form.tsx index c750e7fb23d1a..c70e21c93da4d 100644 --- a/x-pack/platform/plugins/private/graph/public/components/settings/blocklist_form.tsx +++ b/x-pack/platform/plugins/private/graph/public/components/settings/blocklist_form.tsx @@ -41,6 +41,7 @@ export function BlocklistForm({ ) : ( { {isManagedPolicy && ( <> { {isDeprecatedPolicy && ( <> { {showEmptyRolloverFieldsError && ( <> = ({ close, select const { statusCode, message } = error; content = ( = ({ } else if (repos.length === 0) { calloutContent = ( = ({ ) { calloutContent = ( = ({ if (phase === 'hot' && isUsingSearchableSnapshotInHotPhase) { infoCallout = ( = ({ } else if (isDisabledDueToLicense) { infoCallout = ( { <> { <> { > {isManagedPolicy ? ( { { = (props: Props) => { customRenderResponse.componentToRender = ( { return discoverLink ? ( @@ -259,6 +275,7 @@ exports[`setupMode ListingCallOut no detectable instances should render for apm exports[`setupMode ListingCallOut no detectable instances should render for beats 1`] = ` @@ -275,6 +292,7 @@ exports[`setupMode ListingCallOut no detectable instances should render for beat exports[`setupMode ListingCallOut no detectable instances should render for elasticsearch 1`] = ` @@ -291,6 +309,7 @@ exports[`setupMode ListingCallOut no detectable instances should render for elas exports[`setupMode ListingCallOut no detectable instances should render for kibana 1`] = ` @@ -307,6 +326,7 @@ exports[`setupMode ListingCallOut no detectable instances should render for kiba exports[`setupMode ListingCallOut no detectable instances should render for logstash 1`] = ` @@ -323,6 +343,7 @@ exports[`setupMode ListingCallOut no detectable instances should render for logs exports[`setupMode ListingCallOut only detectable instances should render for apm 1`] = ` - +

      {i18n.translate('xpack.monitoring.setupMode.migrateToMetricbeatDescription', { defaultMessage: `These {product} {identifier} are self monitored. @@ -152,7 +161,12 @@ export function ListingCallOut({ setupModeData, productName, customRenderer }: P return ( - +

      {i18n.translate('xpack.monitoring.setupMode.migrateSomeToMetricbeatDescription', { defaultMessage: `Some {product} {identifier} are monitored through self monitoring. Migrate to monitor with Metricbeat.`, diff --git a/x-pack/platform/plugins/private/observability_ai_assistant_management/public/routes/components/settings_tab/change_kb_model.tsx b/x-pack/platform/plugins/private/observability_ai_assistant_management/public/routes/components/settings_tab/change_kb_model.tsx index a058bf5fcc79c..fcd8895ac0dc4 100644 --- a/x-pack/platform/plugins/private/observability_ai_assistant_management/public/routes/components/settings_tab/change_kb_model.tsx +++ b/x-pack/platform/plugins/private/observability_ai_assistant_management/public/routes/components/settings_tab/change_kb_model.tsx @@ -199,6 +199,7 @@ export function ChangeKbModel({ if (error) { return ( = ({ {hasDeprecatedProxySetting ? ( <> { if (state.success && chromeStatus === 'complete') { outcomeCallout = ( { } else if (!state.success && chromeStatus === 'danger') { outcomeCallout = ( = ({ info, config {Boolean(errored) && ( <> = ({ info, config <> {Boolean(errored) && } ) : isReportingHealthError ? ( ) : hasUnmetPrerequisites ? ( {!readOnly && ( = ({ apiClient, screenshotMod } > {error ? ( - +

      {error.message}

      {error.stack && {error.stack}}
      diff --git a/x-pack/platform/plugins/private/runtime_fields/public/components/runtime_field_editor_flyout_content/runtime_field_editor_flyout_content.tsx b/x-pack/platform/plugins/private/runtime_fields/public/components/runtime_field_editor_flyout_content/runtime_field_editor_flyout_content.tsx index a9a259a63dc37..3692ccd1f1d02 100644 --- a/x-pack/platform/plugins/private/runtime_fields/public/components/runtime_field_editor_flyout_content/runtime_field_editor_flyout_content.tsx +++ b/x-pack/platform/plugins/private/runtime_fields/public/components/runtime_field_editor_flyout_content/runtime_field_editor_flyout_content.tsx @@ -120,6 +120,7 @@ export const RuntimeFieldEditorFlyoutContent = ({ {isSubmitted && !isFormValid && ( <> = ({ <> = ({ policy, on /> ) : ( = ({ if (!repositoryTypes.length) { return ( = ( <> = ({ childre {!isSingle && isDeleting ? ( diff --git a/x-pack/platform/plugins/private/snapshot_restore/public/application/sections/home/policy_list/policy_details/tabs/tab_summary.tsx b/x-pack/platform/plugins/private/snapshot_restore/public/application/sections/home/policy_list/policy_details/tabs/tab_summary.tsx index a64843998b760..d9d685b3885a0 100644 --- a/x-pack/platform/plugins/private/snapshot_restore/public/application/sections/home/policy_list/policy_details/tabs/tab_summary.tsx +++ b/x-pack/platform/plugins/private/snapshot_restore/public/application/sections/home/policy_list/policy_details/tabs/tab_summary.tsx @@ -62,6 +62,7 @@ export const TabSummary: React.FunctionComponent = ({ policy }) => { {isManagedPolicy ? ( <> = ({ return ( = ({ {isManagedRepository ? ( = ({ {error ? ( <> = ({ match, location }) => { {typeof errorMessage !== 'undefined' ? ( <> - + = ({ /> )} {latestFunctionService.sortFieldOptions.length === 0 && ( - +

      = React.memo( {stepDefineState.transformFunction === TRANSFORM_FUNCTION.LATEST ? ( <> - +

      = ({ match }) => { {searchItemsError !== undefined && ( <> - + )} diff --git a/x-pack/platform/plugins/private/transform/public/app/sections/transform_management/components/transform_list/expanded_row_column_view.tsx b/x-pack/platform/plugins/private/transform/public/app/sections/transform_management/components/transform_list/expanded_row_column_view.tsx index 26a16df4ea428..eecb843ad80c6 100644 --- a/x-pack/platform/plugins/private/transform/public/app/sections/transform_management/components/transform_list/expanded_row_column_view.tsx +++ b/x-pack/platform/plugins/private/transform/public/app/sections/transform_management/components/transform_list/expanded_row_column_view.tsx @@ -66,7 +66,7 @@ export const ExpandedRowColumnView: FC = ({ {showErrorCallout && ( <> - +

      = ({ {showNodeInfo && transformNodes === 0 && ( <> = ({ checkpoint if (error) { return ( {warnings.length > 0 && ( <> = {warnings.length > 0 && ( <> { {remoteClusters && remoteClusters.length > 0 && ( <> = ({ 0) && ( <> = ({ if (error) { return ( {migrationStatus === 'NO_MIGRATION_NEEDED' && ( = ({ setIsComplete }) = if (migrationStatus.error) { return ( = ({ setIsComplete }) = {startMigrationStatus.statusType === 'error' && ( <> = ({ setIsComplete }) = {migrationStatus.data?.migration_status === 'ERROR' && ( <> { if (error) { callToAction = ( { ) : ( { queryError && ( <> { { if (metricFieldOptions.length === 0) { return ( = ({ <> ( if (!isAuthorized) { return ( ( ( {successfulGeneration && isSelectedPathGenerated ? ( ( /> {successfulGeneration ? ( ( {error ? ( ({ <> = React.memo( { <>

      {(!connector.config?.createCommentUrl || !connector.config?.createCommentJson) && ( = ( <> {showMappingWarning && ( {showMappingWarning && ( {showTimeWindowWarning && ( , children: ( - + ), }, ]; diff --git a/x-pack/platform/plugins/shared/content_connectors/public/components/connector_detail/overview.tsx b/x-pack/platform/plugins/shared/content_connectors/public/components/connector_detail/overview.tsx index e3917b1ce98b1..de309d18bb278 100644 --- a/x-pack/platform/plugins/shared/content_connectors/public/components/connector_detail/overview.tsx +++ b/x-pack/platform/plugins/shared/content_connectors/public/components/connector_detail/overview.tsx @@ -59,6 +59,7 @@ export const ConnectorDetailOverview: React.FC = () => { {isWaitingOnAgentlessDeployment && ( <> { {error && ( <> { {!!connector && !connector.index_name && ( <> { {!!connector?.index_name && !indexData && ( <> { <> {isModalVisible && } = ({ {isWaitingOnAgentlessDeployment && ( diff --git a/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/connector/native_connector_configuration/native_connector_configuration_config.tsx b/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/connector/native_connector_configuration/native_connector_configuration_config.tsx index cc53267fa9e83..ff913ba9fe89b 100644 --- a/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/connector/native_connector_configuration/native_connector_configuration_config.tsx +++ b/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/connector/native_connector_configuration/native_connector_configuration_config.tsx @@ -87,6 +87,7 @@ export const NativeConnectorConfigurationConfig: React.FC< <> { {(!isAdvancedSnippetEmpty || !isLocalSnippetEmpty) && ( { = ({ {errors.map((error, index) => ( { <> {isAccessControlIndexNotFound && ( { {isAccessControlIndexNotFound ? ( { /> ) : ( ({ {errors.map((errorMessage, errorMessageIndex) => ( {!loading && nonAggregatableDatasets.length > 0 && ( - +

      {nonAggregatableWarningDescription(nonAggregatableDatasets)}

      diff --git a/x-pack/platform/plugins/shared/embeddable_alerts_table/public/components/config_editor_content.tsx b/x-pack/platform/plugins/shared/embeddable_alerts_table/public/components/config_editor_content.tsx index 47afadf2362ce..8303c3a00de2b 100644 --- a/x-pack/platform/plugins/shared/embeddable_alerts_table/public/components/config_editor_content.tsx +++ b/x-pack/platform/plugins/shared/embeddable_alerts_table/public/components/config_editor_content.tsx @@ -238,6 +238,7 @@ export const ConfigEditorContent = ({ ) : cannotLoadRuleTypes ? ( = if (status === 'success') { return ( = ({ {!authz.fleet.all || granularPrivilegesCallout.isHidden ? null : ( = ({ <> = ({ {packagePoliciesWithMultiplePolicies && ( <> = ({ /> ) : agentsCount ? ( voi ) : error ? ( voi <> {agentCount > 0 ? ( ) : ( = ({ <> - + )} diff --git a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/components/cloud_security_posture/post_install_cloud_formation_modal.tsx b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/components/cloud_security_posture/post_install_cloud_formation_modal.tsx index df9deccaf490f..79ccc3a9d9ce7 100644 --- a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/components/cloud_security_posture/post_install_cloud_formation_modal.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/components/cloud_security_posture/post_install_cloud_formation_modal.tsx @@ -79,7 +79,7 @@ export const PostInstallCloudFormationModal: React.FunctionComponent<{ {error && isError && !isLoadingInitialRequest && ( <> - + )} diff --git a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/components/cloud_security_posture/post_install_google_cloud_shell_modal.tsx b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/components/cloud_security_posture/post_install_google_cloud_shell_modal.tsx index 957f1bf3ec501..259015700a022 100644 --- a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/components/cloud_security_posture/post_install_google_cloud_shell_modal.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/components/cloud_security_posture/post_install_google_cloud_shell_modal.tsx @@ -97,7 +97,7 @@ export const PostInstallGoogleCloudShellModal: React.FunctionComponent<{ {error && isError && ( <> - + )} diff --git a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/index.tsx b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/index.tsx index 151f3ac4bfd87..d3e9f1d8b61c3 100644 --- a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/index.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/index.tsx @@ -605,7 +605,7 @@ export const CreatePackagePolicySinglePage: CreatePackagePolicyParams = ({ {fipsAgentsCount > 0 && !fipsCompatibleIntegration && ( <> = memo(({ inputStatusFormatter }) => { return inputStatusFormatter.hasError ? ( = memo( if (!isLogFeatureAvailable) { return ( = ({ crea {createState.status === CREATE_STATUS.CREATED ? ( = ({ crea /> ) : ( = ({ {hasFleetServer && isSingleAgent ? ( <> { if (status === 'error') { return ( - + { {indexResult?.error && ( <> - + {(indexResult?.error as any)?.error?.reason ?? ( { {error && ( <> - + {error?.message ?? ( { if (integrations.status === 'error') { return ( - + { {savedObjectResult && (status === 'error' || namesStatus === 'error') && ( <> - + - + = ({ <> = (props) <> = (props) = (props) + = (props) => { {type === 'download_source' ? ( = (props) => { /> ) : ( {fleetServerHost && ( = memo( {syncedIntegrationsStatus?.error && ( = ({ packageInfo, ) : ( = ({ {conflictCount && conflictCount > 0 ? ( <> = ({ return ( <> {apiKey && ( = ({ <> = ({ return ( <> - + ); } diff --git a/x-pack/platform/plugins/shared/fleet/public/components/cloud_security_posture/cloud_formation_instructions.tsx b/x-pack/platform/plugins/shared/fleet/public/components/cloud_security_posture/cloud_formation_instructions.tsx index 17b229807ca58..f26d298b44d4c 100644 --- a/x-pack/platform/plugins/shared/fleet/public/components/cloud_security_posture/cloud_formation_instructions.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/components/cloud_security_posture/cloud_formation_instructions.tsx @@ -36,7 +36,7 @@ export const CloudFormationInstructions: React.FunctionComponent = ({ return ( <> - + ); } diff --git a/x-pack/platform/plugins/shared/fleet/public/components/enrollment_instructions/root_privileges_callout.tsx b/x-pack/platform/plugins/shared/fleet/public/components/enrollment_instructions/root_privileges_callout.tsx index 50177698099de..8f7518cf6077a 100644 --- a/x-pack/platform/plugins/shared/fleet/public/components/enrollment_instructions/root_privileges_callout.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/components/enrollment_instructions/root_privileges_callout.tsx @@ -19,6 +19,7 @@ export const RootPrivilegesCallout: React.FC<{ return rootIntegrations.length > 0 ? ( <> = ({ {removedPolicies.length > 0 && ( = ({ {packagePolicyPackage?.type === 'input' && ( <> = ({ {(hasMultipleAgentPolicies || isShared) && ( <> = ({ ) : agentsCount && agentPolicies ? ( <> = ({ {!templateIsInUse && ( <> = ({ {error && ( <> { {!Boolean(suggestedFields.length) && ( <> { <> { <> = React.memo( {indexMode && ( <> {hasSystemTemplate && ( = React.memo( {hasWildCardIndexPattern ? ( { {createError && ( <> { {!isLoading && hasSelectedMultipleIndices && matchFieldOptions.length === 0 && ( <> setprojectLevelRetentionCallout(false)} data-test-subj="projectLevelRetentionCallout" title={i18n.translate( diff --git a/x-pack/platform/plugins/shared/index_management/public/application/sections/home/index_list/create_index/create_index_modal.tsx b/x-pack/platform/plugins/shared/index_management/public/application/sections/home/index_list/create_index/create_index_modal.tsx index dd3f1eef71300..c9c9577274e75 100644 --- a/x-pack/platform/plugins/shared/index_management/public/application/sections/home/index_list/create_index/create_index_modal.tsx +++ b/x-pack/platform/plugins/shared/index_management/public/application/sections/home/index_list/create_index/create_index_modal.tsx @@ -109,6 +109,7 @@ export const CreateIndexModal = ({ closeModal, loadIndices }: CreateIndexModalPr {createError && ( <> = ({ <> - + {message &&

      {message}

      } {action || filter ? ( diff --git a/x-pack/platform/plugins/shared/index_management/public/application/sections/home/template_list/template_details/template_details_content.tsx b/x-pack/platform/plugins/shared/index_management/public/application/sections/home/template_list/template_details/template_details_content.tsx index bf8acc55b2e4e..138e846c2bae7 100644 --- a/x-pack/platform/plugins/shared/index_management/public/application/sections/home/template_list/template_details/template_details_content.tsx +++ b/x-pack/platform/plugins/shared/index_management/public/application/sections/home/template_list/template_details/template_details_content.tsx @@ -182,6 +182,7 @@ export const TemplateDetailsContent = ({ const managedTemplateCallout = isCloudManaged && ( <> = ({ onDone, children }) => {error && ( <> = ({ } if (!processorOutput) { - return ; + return ( + + ); } const { diff --git a/x-pack/platform/plugins/shared/ingest_pipelines/public/application/components/pipeline_editor/components/test_pipeline/test_pipeline_flyout.tsx b/x-pack/platform/plugins/shared/ingest_pipelines/public/application/components/pipeline_editor/components/test_pipeline/test_pipeline_flyout.tsx index e54b769b54bd1..8e066f82390bd 100644 --- a/x-pack/platform/plugins/shared/ingest_pipelines/public/application/components/pipeline_editor/components/test_pipeline/test_pipeline_flyout.tsx +++ b/x-pack/platform/plugins/shared/ingest_pipelines/public/application/components/pipeline_editor/components/test_pipeline/test_pipeline_flyout.tsx @@ -127,6 +127,7 @@ export const TestPipelineFlyout: React.FunctionComponent = ({ {testingError ? ( <> = ({ onAddDocuments }) => {documentError && ( <> = ({ {!hasError && ( - +

      = ({ if (displayWarning || (error.statusCode === 404 && isCustom)) { return ( +

      - +

      {i18n.translate('xpack.maps.spatialJoinExpression.noDataViewTitle', { defaultMessage: 'Unable to load data view {dataViewId}.', diff --git a/x-pack/platform/plugins/shared/maps/public/connected_components/edit_layer_panel/layer_settings/layer_settings.tsx b/x-pack/platform/plugins/shared/maps/public/connected_components/edit_layer_panel/layer_settings/layer_settings.tsx index 29807866ab48d..d1ccbff119901 100644 --- a/x-pack/platform/plugins/shared/maps/public/connected_components/edit_layer_panel/layer_settings/layer_settings.tsx +++ b/x-pack/platform/plugins/shared/maps/public/connected_components/edit_layer_panel/layer_settings/layer_settings.tsx @@ -244,6 +244,7 @@ export function LayerSettings(props: Props) { return isLayerGroup(props.layer) ? ( <> { data-description={this.props.description} > { if (this.state.loadPropertiesErrorMsg) { return ( {errors.map(({ title, body }, index) => (

      - + {body} @@ -40,7 +40,7 @@ export function LegendDetails({ inspectorAdapters, layer }: Props) { <> {warnings.map(({ title, body }, index) => (
      - + {body} diff --git a/x-pack/platform/plugins/shared/ml/public/alerting/anomaly_detection_rule/config_validator.tsx b/x-pack/platform/plugins/shared/ml/public/alerting/anomaly_detection_rule/config_validator.tsx index 1a2ba113aafe3..728dea391df43 100644 --- a/x-pack/platform/plugins/shared/ml/public/alerting/anomaly_detection_rule/config_validator.tsx +++ b/x-pack/platform/plugins/shared/ml/public/alerting/anomaly_detection_rule/config_validator.tsx @@ -69,6 +69,7 @@ export const ConfigValidator: FC = React.memo( {configContainsIssues ? ( <> = React.memo( {notifyWhenWarning ? ( <> = ({ <> ; + return ( + + ); } } @@ -367,6 +374,7 @@ class AnnotationsTableUI extends Component { if (annotations.length === 0) { return ( = () => { return showNodeInfo ? ( <> = () => { ) : ( <> = ({ pipelineName, sourceIndex }) => ) : ( = memo(({ state, sourceIndex, mode }) => { {sourceIndexMissingError && showCallOut ? ( { setShowCallOut(false); }} diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/model_snapshots/edit_model_snapshot_flyout/edit_model_snapshot_flyout.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/model_snapshots/edit_model_snapshot_flyout/edit_model_snapshot_flyout.tsx index 7523faa29f04a..ea02c96eb20b1 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/model_snapshots/edit_model_snapshot_flyout/edit_model_snapshot_flyout.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/model_snapshots/edit_model_snapshot_flyout/edit_model_snapshot_flyout.tsx @@ -128,6 +128,7 @@ export const EditModelSnapshotFlyout: FC = ({ snapshot, job, closeFlyout <> ) : ( = ({ return showWarning === false ? null : ( <> = ({ {splom.messages.length > 0 && ( <> - + {splom.messages.map((m) => ( {m} diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/shared/review_and_create_pipeline.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/shared/review_and_create_pipeline.tsx index 45688685c7327..44ffc94742ac4 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/shared/review_and_create_pipeline.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/shared/review_and_create_pipeline.tsx @@ -120,6 +120,7 @@ export const ReviewAndCreatePipeline: FC = ({ {pipelineCreated === true && pipelineError === undefined ? ( = ({ ) : null} {pipelineError !== undefined ? ( { return ( = ({ currentProgress, failedJobMessage }) {failedJobMessage !== undefined && ( <> = ({ error }) => { if (typeof error === 'string' && error.includes('index_not_found')) { errorCallout = ( = ({ error }) => { // Job was started but no results have been written yet errorCallout = ( = ({ error }) => { // query bar syntax is incorrect errorCallout = ( = ({ return ( = ({ <> {baseline === undefined && ( = React.memo(({ jobId }) = return ( = React.memo(({ jobId }) = {showLegacyFeatureInfluenceFormatCallout && ( <> = ({ if (typeof errorMessage !== 'undefined') { return ( { {isCcsCallOut && ( <> ) : null} - {dataViewMsg ? {dataViewMsg} : null} + {dataViewMsg ? ( + + {dataViewMsg} + + ) : null} diff --git a/x-pack/platform/plugins/shared/ml/public/application/datavisualizer/data_drift/data_view_editor.tsx b/x-pack/platform/plugins/shared/ml/public/application/datavisualizer/data_drift/data_view_editor.tsx index 57174f6c753dd..9a0e487a959ff 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/datavisualizer/data_drift/data_view_editor.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/datavisualizer/data_drift/data_view_editor.tsx @@ -160,7 +160,7 @@ export function DataViewEditor({ {errorMessage === mustMatchError ? ( - + {datafeedRunning && ( <> - + ; + return ( + + ); } const forecasts = this.state.forecasts; @@ -259,6 +266,7 @@ export class ForecastsTable extends Component { if (forecasts.length === 0) { return ( = ({ isDisabled, jobEditorMode, datafee <> { {showCallOut && ( { return jobCreator.modelPlot && highCardinality !== null ? ( { <> {
      { {isTimeBasedIndex === false && ( <> - + = memo( <> {saveState === SAVE_STATE.SAVED && ( = memo( )} {saveState === SAVE_STATE.FAILED && ( = memo( )} {saveState === SAVE_STATE.PARTIAL_FAILURE && ( = ({ moduleId, existingGroupIds }) => { {displayQueryWarning && ( <> = ({ models, onClose, {modelsWithPipelines.length > 0 ? ( <> = ({ models, onClose, {modelsWithInferenceAPIs.length > 0 ? ( 0 ? ( <> 0 ? ( <> = ({ isElserCalloutVisible ? ( <> = ({ errorText }) => { return errorText === null ? null : ( <> <> - + = ({ addEvents, setTimezone, isDisable = ({ if (error) { return ( = ({ dataView, field, query, timeRange }) => { > = ({ {state === STATE.SAVE_FAILED && createError !== null ? ( <> - + {createError.errorText} @@ -425,7 +425,7 @@ export const JobDetails: FC> = ({ {incomingCreateError ? ( <> - + {incomingCreateError.errorText} diff --git a/x-pack/platform/plugins/shared/observability_ai_assistant/public/components/insight/insight.tsx b/x-pack/platform/plugins/shared/observability_ai_assistant/public/components/insight/insight.tsx index 452cdc31343dd..4f8b7d494bb4f 100644 --- a/x-pack/platform/plugins/shared/observability_ai_assistant/public/components/insight/insight.tsx +++ b/x-pack/platform/plugins/shared/observability_ai_assistant/public/components/insight/insight.tsx @@ -443,6 +443,7 @@ export function Insight({ } else if (messages.status === FETCH_STATUS.FAILURE) { children = ( { { = ({ agentSelection, onCh if (agentsFetched && agentList?.groups && !options.length) { return ( <> - + - +

      {i18n.translate( 'xpack.osquery.fleetIntegration.osqueryConfig.noAgentsWarningMessage', diff --git a/x-pack/platform/plugins/shared/osquery/public/results/results_table.tsx b/x-pack/platform/plugins/shared/osquery/public/results/results_table.tsx index 123e2dd9b82dc..313c252e158d1 100644 --- a/x-pack/platform/plugins/shared/osquery/public/results/results_table.tsx +++ b/x-pack/platform/plugins/shared/osquery/public/results/results_table.tsx @@ -406,7 +406,10 @@ const ResultsTableComponent: React.FC = ({ {!allResultsData?.edges.length ? ( - + ) : ( diff --git a/x-pack/platform/plugins/shared/osquery/public/routes/packs/edit/index.tsx b/x-pack/platform/plugins/shared/osquery/public/routes/packs/edit/index.tsx index bb46352844bd2..c5fa7b12cb0af 100644 --- a/x-pack/platform/plugins/shared/osquery/public/routes/packs/edit/index.tsx +++ b/x-pack/platform/plugins/shared/osquery/public/routes/packs/edit/index.tsx @@ -108,7 +108,7 @@ const EditPackPageComponent = () => { isReadOnly ? ( <> - + { }} /> {elasticPrebuiltQuery && ( - + = ({ <> { return ( { return ( { {canManageOwnApiKeys && !canManageApiKeys ? ( <> { if (this.checkEmptyAnyAllMappings(this.state.roleMapping!.rules as RoleMappingRule)) { return ( { expect(wrapper).toMatchInlineSnapshot(` { if (!props.canUseStoredScripts && !props.canUseInlineScripts) { return ( { if (validationResult && validationResult.error) { validationWarning = ( - + ); } @@ -160,6 +160,7 @@ export class RuleEditorPanel extends Component { if (this.state.mode === 'json' && this.state.maxDepth > VISUAL_MAX_RULE_DEPTH) { return ( { return ( = ({ with user profile disabling "manageSpaces" renders a warning message instead of the privilege form 1`] = ` { ) && ( { <> { if (!uiCapabilities.spaces?.manage) { return ( = {isSystemUser ? ( <> = ({ username }) {isDeprecatedUser ? ( <> = ({ username }) ) : isReservedUser ? ( <> = ({ username }) ) : user.enabled === false ? ( <> = ({ {isCurrentSpace && ( <> { {helpText && ( <> - + {helpText} diff --git a/x-pack/platform/plugins/shared/spaces/public/management/edit_space/edit_space_general_tab.tsx b/x-pack/platform/plugins/shared/spaces/public/management/edit_space/edit_space_general_tab.tsx index 8c59c453a1b7b..875e96ac60ae9 100644 --- a/x-pack/platform/plugins/shared/spaces/public/management/edit_space/edit_space_general_tab.tsx +++ b/x-pack/platform/plugins/shared/spaces/public/management/edit_space/edit_space_general_tab.tsx @@ -249,6 +249,7 @@ export const EditSpaceSettingsTab: React.FC = ({ space, features, history <> = (props) => { {selectedRolesCombinedPrivileges.length > 1 ? ( = (props) => { ) : ( { <> {!this.state.loading && !this.canCreateSpaces() ? ( <> - + ) : undefined} diff --git a/x-pack/platform/plugins/shared/spaces/public/share_saved_objects_to_space/components/share_to_space_form.tsx b/x-pack/platform/plugins/shared/spaces/public/share_saved_objects_to_space/components/share_to_space_form.tsx index 75068b2c3ed7a..7b7cc39ab54b9 100644 --- a/x-pack/platform/plugins/shared/spaces/public/share_saved_objects_to_space/components/share_to_space_form.tsx +++ b/x-pack/platform/plugins/shared/spaces/public/share_saved_objects_to_space/components/share_to_space_form.tsx @@ -47,6 +47,7 @@ export const ShareToSpaceForm = (props: Props) => { const createCopyCallout = showCreateCopyCallout ? ( - +

      {paramsError.message}

      diff --git a/x-pack/platform/plugins/shared/stack_alerts/public/rule_types/es_query/test_query_row/test_query_row.tsx b/x-pack/platform/plugins/shared/stack_alerts/public/rule_types/es_query/test_query_row/test_query_row.tsx index 88e8197e5cb94..0bad4632bd3ec 100644 --- a/x-pack/platform/plugins/shared/stack_alerts/public/rule_types/es_query/test_query_row/test_query_row.tsx +++ b/x-pack/platform/plugins/shared/stack_alerts/public/rule_types/es_query/test_query_row/test_query_row.tsx @@ -140,7 +140,13 @@ export const TestQueryRow: React.FC = ({ )} {testQueryWarning && ( - + )} {showTable && testQueryPreview && ( diff --git a/x-pack/platform/plugins/shared/stack_alerts/public/rule_types/threshold/expression.tsx b/x-pack/platform/plugins/shared/stack_alerts/public/rule_types/threshold/expression.tsx index 7d29cc3cd6df2..514da224a699f 100644 --- a/x-pack/platform/plugins/shared/stack_alerts/public/rule_types/threshold/expression.tsx +++ b/x-pack/platform/plugins/shared/stack_alerts/public/rule_types/threshold/expression.tsx @@ -170,7 +170,7 @@ export const IndexThresholdRuleTypeExpression: React.FunctionComponent< {hasExpressionErrors ? ( - + ) : null} diff --git a/x-pack/platform/plugins/shared/stack_alerts/public/rule_types/threshold/visualization.tsx b/x-pack/platform/plugins/shared/stack_alerts/public/rule_types/threshold/visualization.tsx index 445ba67f23d47..d8d4bbcb87199 100644 --- a/x-pack/platform/plugins/shared/stack_alerts/public/rule_types/threshold/visualization.tsx +++ b/x-pack/platform/plugins/shared/stack_alerts/public/rule_types/threshold/visualization.tsx @@ -216,6 +216,7 @@ export const ThresholdVisualization: React.FunctionComponent = ({ = ({ ) : ( = ({ <> + ) : ( - + {i18n.EMPTY_MAPPING_WARNING_DESC} ); diff --git a/x-pack/platform/plugins/shared/stack_connectors/public/connector_types/tines/tines_params.tsx b/x-pack/platform/plugins/shared/stack_connectors/public/connector_types/tines/tines_params.tsx index 1bc91bc8914a7..fec83008625c2 100644 --- a/x-pack/platform/plugins/shared/stack_connectors/public/connector_types/tines/tines_params.tsx +++ b/x-pack/platform/plugins/shared/stack_connectors/public/connector_types/tines/tines_params.tsx @@ -287,6 +287,7 @@ const TinesParamsFields: React.FunctionComponent

      {getConfirmDeletionModalText(numIdsToDelete, singleTitle, multipleTitle)}

      {showWarningText && ( - {warningText}} color="warning" iconType="warning" /> + {warningText}} color="warning" iconType="warning" /> )} ); diff --git a/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/components/rules_delete_modal_confirmation.tsx b/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/components/rules_delete_modal_confirmation.tsx index e7b0d7c453fca..03f52cd939bce 100644 --- a/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/components/rules_delete_modal_confirmation.tsx +++ b/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/components/rules_delete_modal_confirmation.tsx @@ -40,7 +40,7 @@ export const RulesDeleteModalConfirmation = ({ >

      {confirmModalText}

      {showWarningText && ( - {warningText}} color="warning" iconType="warning" /> + {warningText}} color="warning" iconType="warning" /> )} ); diff --git a/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/action_connector_form/action_type_form.tsx b/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/action_connector_form/action_type_form.tsx index bea2095925ac4..355d72d33e398 100644 --- a/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/action_connector_form/action_type_form.tsx +++ b/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/action_connector_form/action_type_form.tsx @@ -599,7 +599,7 @@ export const ActionTypeForm = ({ {warning ? ( <> - + ) : null} diff --git a/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/action_connector_form/connector_add_inline.tsx b/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/action_connector_form/connector_add_inline.tsx index 72e022f460c20..c543054d24056 100644 --- a/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/action_connector_form/connector_add_inline.tsx +++ b/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/action_connector_form/connector_add_inline.tsx @@ -237,7 +237,7 @@ export const AddConnectorInline = ({ /> ) ) : ( - +

      = ({ {showFormErrors && ( <> = ({ {showFormErrors && ( <> - + ) : null} diff --git a/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/action_connector_form/test_connector_form.tsx b/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/action_connector_form/test_connector_form.tsx index 67a7728ce31c8..2a017128cb3ea 100644 --- a/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/action_connector_form/test_connector_form.tsx +++ b/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/action_connector_form/test_connector_form.tsx @@ -117,7 +117,7 @@ export const TestConnectorForm = ({ <> {executeEnabled ? null : ( <> - +

      ( {hasExceedLogs && ( = ({ {isAggregatedData ? ( {isAllOptionSelected && ( {waterfall.exceedsMax && ( - + {i18n.translate( 'xpack.apm.transactionDetails.spanFlyout.compositeExampleWarning', { diff --git a/x-pack/solutions/observability/plugins/apm/public/components/fleet_integration/apm_agents/runtime_attachment/runtime_attachment.tsx b/x-pack/solutions/observability/plugins/apm/public/components/fleet_integration/apm_agents/runtime_attachment/runtime_attachment.tsx index 1258981f8ec57..9e9a84e909e55 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/fleet_integration/apm_agents/runtime_attachment/runtime_attachment.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/fleet_integration/apm_agents/runtime_attachment/runtime_attachment.tsx @@ -88,6 +88,7 @@ export function RuntimeAttachment({ {showUnsavedWarning && ( <> > = ({ children }

      ) : hasFailedLoading ? ( - + {i18n.translate('xpack.infra.logs.alertFlyout.groupByOptimizationWarning', { defaultMessage: 'When setting a "group by" we highly recommend using the "{comparator}" comparator for your threshold. This can lead to significant performance improvements.', diff --git a/x-pack/solutions/observability/plugins/infra/public/components/asset_details/tabs/overview/services.tsx b/x-pack/solutions/observability/plugins/infra/public/components/asset_details/tabs/overview/services.tsx index de86d2c81d401..15e671802d246 100644 --- a/x-pack/solutions/observability/plugins/infra/public/components/asset_details/tabs/overview/services.tsx +++ b/x-pack/solutions/observability/plugins/infra/public/components/asset_details/tabs/overview/services.tsx @@ -90,6 +90,7 @@ export const ServicesContent = ({ > {error ? ( = ({ /> {setupStatus.reasons.map((errorMessage, i) => ( - + {errorMessage} ))} diff --git a/x-pack/solutions/observability/plugins/infra/public/pages/metrics/settings/indices_configuration_panel.tsx b/x-pack/solutions/observability/plugins/infra/public/pages/metrics/settings/indices_configuration_panel.tsx index 018fe100d589b..9277e746f3ea6 100644 --- a/x-pack/solutions/observability/plugins/infra/public/pages/metrics/settings/indices_configuration_panel.tsx +++ b/x-pack/solutions/observability/plugins/infra/public/pages/metrics/settings/indices_configuration_panel.tsx @@ -143,6 +143,7 @@ export const IndicesConfigurationPanel = ({ <> 0 ? ( <> - +
        {errors.map((error, errorIndex) => (
      • {error}
      • diff --git a/x-pack/solutions/observability/plugins/observability/public/components/alert_overview/overview_columns.tsx b/x-pack/solutions/observability/plugins/observability/public/components/alert_overview/overview_columns.tsx index 8b44d42f5a5e4..5deda7d2de4ea 100644 --- a/x-pack/solutions/observability/plugins/observability/public/components/alert_overview/overview_columns.tsx +++ b/x-pack/solutions/observability/plugins/observability/public/components/alert_overview/overview_columns.tsx @@ -111,6 +111,7 @@ export const overviewColumns: Array> = [ })} {ruleCriteria.length > 1 && ( {paramsError && !triggerResetDataView ? ( - +

        {i18n.translate('xpack.observability.customThreshold.rule.alertFlyout.error.message', { defaultMessage: 'Error fetching search source', diff --git a/x-pack/solutions/observability/plugins/observability/public/pages/alert_details/components/stale_alert.tsx b/x-pack/solutions/observability/plugins/observability/public/pages/alert_details/components/stale_alert.tsx index e7ec7037bde49..8373d23d00dfd 100644 --- a/x-pack/solutions/observability/plugins/observability/public/pages/alert_details/components/stale_alert.tsx +++ b/x-pack/solutions/observability/plugins/observability/public/pages/alert_details/components/stale_alert.tsx @@ -86,6 +86,7 @@ function StaleAlert({ <> {isAlertStale?.isStale && ( diff --git a/x-pack/solutions/observability/plugins/profiling/public/components/frame_information_window/missing_symbols_callout.tsx b/x-pack/solutions/observability/plugins/profiling/public/components/frame_information_window/missing_symbols_callout.tsx index 1d10cbec4ccc3..b61d6f6f6d3be 100644 --- a/x-pack/solutions/observability/plugins/profiling/public/components/frame_information_window/missing_symbols_callout.tsx +++ b/x-pack/solutions/observability/plugins/profiling/public/components/frame_information_window/missing_symbols_callout.tsx @@ -28,6 +28,7 @@ export function MissingSymbolsCallout({ frameType }: Props) { if (languageType === 'NATIVE') { return ( - {error?.message} + + {error?.message} + )} } />; + return } />; } if (!groupByCardinality) { diff --git a/x-pack/solutions/observability/plugins/slo/public/pages/slo_edit/components/slo_edit_form_objective_section.tsx b/x-pack/solutions/observability/plugins/slo/public/pages/slo_edit/components/slo_edit_form_objective_section.tsx index 81bb6b8765b57..0bde4277f3f35 100644 --- a/x-pack/solutions/observability/plugins/slo/public/pages/slo_edit/components/slo_edit_form_objective_section.tsx +++ b/x-pack/solutions/observability/plugins/slo/public/pages/slo_edit/components/slo_edit_form_objective_section.tsx @@ -98,7 +98,7 @@ export function SloEditFormObjectiveSection() { > {isServerless && ( - + {i18n.translate('xpack.slo.sloEdit.timeWindow.serverlessWarning', { defaultMessage: 'Initial data backfill is limited to the past 7 days', })} @@ -179,7 +179,7 @@ export function SloEditFormObjectiveSection() { {indicator === 'sli.metric.timeslice' && ( - +

        - +

        {summaryMessage && ( - +

        {summaryMessage}

        )} diff --git a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/common/mws_callout/mws_callout_content.tsx b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/common/mws_callout/mws_callout_content.tsx index 2058cbe08fd27..1a20177774646 100644 --- a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/common/mws_callout/mws_callout_content.tsx +++ b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/common/mws_callout/mws_callout_content.tsx @@ -15,6 +15,7 @@ export const MwsCalloutContent = ({ activeMWs }: { activeMWs: MaintenanceWindow[ return ( <> { return ( <> {!(loading && !latestPing) && latestPing?.error ? ( { const disabledCallout = !canEnable && showDisableCallout && !loading ? ( <> - +

        {labels.CALLOUT_MANAGEMENT_DESCRIPTION}

        {labels.CALLOUT_MANAGEMENT_CONTACT_ADMIN}{' '} @@ -43,7 +43,7 @@ export const DisabledCallout = ({ total }: { total?: number }) => { const disAllowedCallout = !isServiceAllowed ? ( <> - +

        {SERVICE_NOT_ALLOWED}

        diff --git a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/monitor_errors/monitor_async_error.tsx b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/monitor_errors/monitor_async_error.tsx index a40bb6e370783..e72bd8805347d 100644 --- a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/monitor_errors/monitor_async_error.tsx +++ b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/monitor_errors/monitor_async_error.tsx @@ -21,6 +21,7 @@ export const MonitorAsyncError = () => { return syncErrors && syncErrors.length > 0 && !isDismissed ? ( <> {isProjectMonitor && ( <> - +

        diff --git a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/monitors_page/overview/overview/metric_item/metric_item_icon.tsx b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/monitors_page/overview/overview/metric_item/metric_item_icon.tsx index f5f5dff20c369..4a63adc935111 100644 --- a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/monitors_page/overview/overview/metric_item/metric_item_icon.tsx +++ b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/monitors_page/overview/overview/metric_item/metric_item_icon.tsx @@ -157,6 +157,7 @@ export const MetricItemIcon = ({ )} = ({ checkGroup, stepIndex )} {waterfallLoaded && hasEvents && !isWaterfallSupported && ( ; + return ( + + ); } return ( @@ -91,6 +93,7 @@ export const BrowserTestRunResult = ({ expectPings, onDone, testRunId }: Props) {(isStepsLoadingFailed || isDownMonitor) && ( {(hasBlockingError && !isPushing && ( - + {blockingErrorMessage} )) || diff --git a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/test_now_mode/test_now_mode_flyout.tsx b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/test_now_mode/test_now_mode_flyout.tsx index c32f51e5f5446..69e09222fa133 100644 --- a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/test_now_mode/test_now_mode_flyout.tsx +++ b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/test_now_mode/test_now_mode_flyout.tsx @@ -67,7 +67,7 @@ export function TestNowModeFlyout({ {isPushing && ( - + {PushingLabel} )} diff --git a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/test_run_details/components/test_run_error_info.tsx b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/test_run_details/components/test_run_error_info.tsx index a7e561b985b38..762242d28c880 100644 --- a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/test_run_details/components/test_run_error_info.tsx +++ b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/test_run_details/components/test_run_error_info.tsx @@ -33,6 +33,7 @@ export const TestRunErrorInfo = ({ <> {(hasNoSteps || isDownMonitor) && showErrorTitle && ( +

        {EDIT_IN_SYNTHETICS_DESC}

        {!canCreateMLJob && ( - +

        = ({ checkGroup, stepIndex )} {waterfallLoaded && hasEvents && !isWaterfallSupported && ( { {listItems.length === 0 && !loading && ( { {(downChecks.has(UNNAMED_LOCATION) || upChecks.has(UNNAMED_LOCATION)) && ( <> - + - +

        {summaryMessage}

        diff --git a/x-pack/solutions/observability/plugins/uptime/public/legacy_uptime/pages/settings.tsx b/x-pack/solutions/observability/plugins/uptime/public/legacy_uptime/pages/settings.tsx index 1b784af6261c0..408c529bd1133 100644 --- a/x-pack/solutions/observability/plugins/uptime/public/legacy_uptime/pages/settings.tsx +++ b/x-pack/solutions/observability/plugins/uptime/public/legacy_uptime/pages/settings.tsx @@ -106,7 +106,7 @@ export const SettingsPage: React.FC = () => { const cannotEditNotice = canEdit ? null : ( <> - + {Translations.settings.editNoticeText} diff --git a/x-pack/solutions/security/packages/ecs-data-quality-dashboard/impl/data_quality_panel/data_quality_details/indices_details/pattern/index_check_flyout/latest_results/latest_check_fields/all_tab/index.tsx b/x-pack/solutions/security/packages/ecs-data-quality-dashboard/impl/data_quality_panel/data_quality_details/indices_details/pattern/index_check_flyout/latest_results/latest_check_fields/all_tab/index.tsx index 1074119e175ea..7a251b7087b7f 100644 --- a/x-pack/solutions/security/packages/ecs-data-quality-dashboard/impl/data_quality_panel/data_quality_details/indices_details/pattern/index_check_flyout/latest_results/latest_check_fields/all_tab/index.tsx +++ b/x-pack/solutions/security/packages/ecs-data-quality-dashboard/impl/data_quality_panel/data_quality_details/indices_details/pattern/index_check_flyout/latest_results/latest_check_fields/all_tab/index.tsx @@ -34,7 +34,7 @@ const AllTabComponent: React.FC = ({ indexName, allFields }) => {
        {allFields.length > 0 ? ( <> - +

        {ALL_CALLOUT(EcsVersion)}

        diff --git a/x-pack/solutions/security/packages/ecs-data-quality-dashboard/impl/data_quality_panel/data_quality_details/indices_details/pattern/index_check_flyout/latest_results/latest_check_fields/ecs_compliant_tab/index.tsx b/x-pack/solutions/security/packages/ecs-data-quality-dashboard/impl/data_quality_panel/data_quality_details/indices_details/pattern/index_check_flyout/latest_results/latest_check_fields/ecs_compliant_tab/index.tsx index 76a4d3c2d8eaf..c26c73f30457c 100644 --- a/x-pack/solutions/security/packages/ecs-data-quality-dashboard/impl/data_quality_panel/data_quality_details/indices_details/pattern/index_check_flyout/latest_results/latest_check_fields/ecs_compliant_tab/index.tsx +++ b/x-pack/solutions/security/packages/ecs-data-quality-dashboard/impl/data_quality_panel/data_quality_details/indices_details/pattern/index_check_flyout/latest_results/latest_check_fields/ecs_compliant_tab/index.tsx @@ -49,7 +49,7 @@ const EcsCompliantTabComponent: React.FC = ({ indexName, ecsCompliantFiel
        {!isTimestampFieldMissing(ecsCompliantFields) ? ( <> - +

        {ECS_COMPLIANT_CALLOUT({ fieldCount: ecsCompliantFields.length, diff --git a/x-pack/solutions/security/packages/kbn-cloud-security-posture/public/src/components/fleet_extensions/aws_credentials_form/aws_account_type_selector.tsx b/x-pack/solutions/security/packages/kbn-cloud-security-posture/public/src/components/fleet_extensions/aws_credentials_form/aws_account_type_selector.tsx index e0119dcb01e50..979944d66b07d 100644 --- a/x-pack/solutions/security/packages/kbn-cloud-security-posture/public/src/components/fleet_extensions/aws_credentials_form/aws_account_type_selector.tsx +++ b/x-pack/solutions/security/packages/kbn-cloud-security-posture/public/src/components/fleet_extensions/aws_credentials_form/aws_account_type_selector.tsx @@ -109,7 +109,7 @@ export const AwsAccountTypeSelect = ({ {!awsOrganizationEnabled && ( <> - + { if (!hasCloudFormationTemplate) { return ( - + { if (!hasArmTemplateUrl) { return ( - + - + {!gcpOrganizationEnabled && ( <> - + - + {!showCloudTemplates && ( <> - + ({ <> { { return isOnboardingSuccessCalloutVisible ? ( <> + {isPlatinum === false && ( diff --git a/x-pack/solutions/security/plugins/security_solution/public/common/components/markdown_editor/renderer.tsx b/x-pack/solutions/security/plugins/security_solution/public/common/components/markdown_editor/renderer.tsx index 431b9b0051f5e..84ce9b6ef7c71 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/common/components/markdown_editor/renderer.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/common/components/markdown_editor/renderer.tsx @@ -64,7 +64,12 @@ const MarkdownRendererComponent: React.FC = ({ children, disableLinks, te <> {platinumPluginDetected && ( <> - + = ({ children, disableLinks, te )} {markdownParseResult !== null && ( <> - + {markdownParseResult} diff --git a/x-pack/solutions/security/plugins/security_solution/public/common/components/ml_popover/ml_popover.tsx b/x-pack/solutions/security/plugins/security_solution/public/common/components/ml_popover/ml_popover.tsx index 5f3b834d777b8..d793169cc4272 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/common/components/ml_popover/ml_popover.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/common/components/ml_popover/ml_popover.tsx @@ -159,6 +159,7 @@ export const MlPopover = React.memo(() => { {incompatibleJobCount > 0 && ( <> = ({ {fieldErrors ? ( <> - + {fieldErrors} diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/required_fields/required_fields.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/required_fields/required_fields.tsx index ea410f9773715..d4579a7367a66 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/required_fields/required_fields.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/required_fields/required_fields.tsx @@ -147,6 +147,7 @@ const RequiredFieldsList = ({ <> {hasWarnings && ( = ({ {showInvocationCountWarning && ( <> = ({ {showRuleDefitnionInvalidWarning && ( <> ( = ({ rule }) => { /> {isRulesCustomizationEnabled && upgradeCallout} {invalidSteps.length > 0 && ( - + {includesRuleWithEQLSequenceStatement && ( <> - + )} diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_gaps/components/bulk_fill_rule_gaps/index.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_gaps/components/bulk_fill_rule_gaps/index.tsx index 6ce9f5a3d1602..910e3547b1e68 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_gaps/components/bulk_fill_rule_gaps/index.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_gaps/components/bulk_fill_rule_gaps/index.tsx @@ -48,6 +48,7 @@ const BulkFillRuleGapsModalComponent = ({ if (rulesCount > 1) { components.push( { const headerCallout = isReverting ? ( <> - +

        {i18n.REVERTING_RULE_CALLOUT_MESSAGE}

        diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_customizations_diff/rule_customizations_flyout_subheader.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_customizations_diff/rule_customizations_flyout_subheader.tsx index afcac7e780aa7..b378701052703 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_customizations_diff/rule_customizations_flyout_subheader.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_customizations_diff/rule_customizations_flyout_subheader.tsx @@ -63,6 +63,7 @@ export const RuleCustomizationsFlyoutSubheader = ({ <> {i18n.UPGRADE_STATUS} @@ -52,6 +53,7 @@ export function RuleUpgradeCallout({ return ( <> {i18n.UPGRADE_STATUS} diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/bulk_actions/forms/index_patterns_form.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/bulk_actions/forms/index_patterns_form.tsx index e167a7618eb5e..69a1c1677449e 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/bulk_actions/forms/index_patterns_form.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/bulk_actions/forms/index_patterns_form.tsx @@ -150,7 +150,12 @@ const IndexPatternsFormComponent = ({ )} {overwrite && ( - + + - + - + - +

        { showCallout && ( <> { {incompatibleJobCount > 0 && ( <> ({ if (riskScoreError) { return ( = ({ state } if (storeEnablement.error) { return ( { useErrorToast(errorMessage, error); if (error) { - return ; + return ; } if (!data || isStatusAPILoading) return ; diff --git a/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/privileged_user_monitoring/components/privileged_access_detection/index.tsx b/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/privileged_user_monitoring/components/privileged_access_detection/index.tsx index ab38b07ecc7d1..637dbb9c553c6 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/privileged_user_monitoring/components/privileged_access_detection/index.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/privileged_user_monitoring/components/privileged_access_detection/index.tsx @@ -64,6 +64,7 @@ export const PrivilegedAccessDetectionsPanel: React.FC<{ spaceId: string }> = ({ <> {padInstallationStatusError && ( {installationErrorOccurred && ( = ({ spaceId }) /> {hasError && ( = ({ (isError ? (

        {error && ( 0 ? ( diff --git a/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/privileged_user_monitoring_manage_data_sources/csv_upload_manage_data_source.tsx b/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/privileged_user_monitoring_manage_data_sources/csv_upload_manage_data_source.tsx index e37b073d200f2..5338bc9068318 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/privileged_user_monitoring_manage_data_sources/csv_upload_manage_data_source.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/privileged_user_monitoring_manage_data_sources/csv_upload_manage_data_source.tsx @@ -57,6 +57,7 @@ export const CsvUploadManageDataSource = ({

        {isError && ( > if (isLeft(visualizationQuery)) { return ( > ) : isError ? (
        { {enableStoreMutation.isError && ( { )} {deleteEntityEngineMutation.isError && ( { assignAssetCriticality.reset(); }} diff --git a/x-pack/solutions/security/plugins/security_solution/public/management/components/artifact_list_page/components/artifact_flyout.tsx b/x-pack/solutions/security/plugins/security_solution/public/management/components/artifact_list_page/components/artifact_flyout.tsx index fcc5aa1c72d18..b08ff02cd7b3a 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/management/components/artifact_list_page/components/artifact_flyout.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/management/components/artifact_list_page/components/artifact_flyout.tsx @@ -465,6 +465,7 @@ export const ArtifactFlyout = memo( {!isInitializing && showExpiredLicenseBanner && ( ( {artifactRestrictedPolicyIds.policyIds.length > 0 && !isGlobal && ( <> - + {ARTIFACT_POLICIES_NOT_ACCESSIBLE_IN_ACTIVE_SPACE_MESSAGE( artifactRestrictedPolicyIds.policyIds.length )} diff --git a/x-pack/solutions/security/plugins/security_solution/public/management/components/endpoint_responder/components/offline_callout.tsx b/x-pack/solutions/security/plugins/security_solution/public/management/components/endpoint_responder/components/offline_callout.tsx index dab6ceb7c8c79..a4c7f1cacf002 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/management/components/endpoint_responder/components/offline_callout.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/management/components/endpoint_responder/components/offline_callout.tsx @@ -26,6 +26,7 @@ export const OfflineCallout = memo(({ agentType, endpointId return ( <> diff --git a/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/ingest_manager_integration/endpoint_policy_create_extension/endpoint_policy_create_extension.tsx b/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/ingest_manager_integration/endpoint_policy_create_extension/endpoint_policy_create_extension.tsx index 1abf9b78e577f..2ad67bebe5105 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/ingest_manager_integration/endpoint_policy_create_extension/endpoint_policy_create_extension.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/ingest_manager_integration/endpoint_policy_create_extension/endpoint_policy_create_extension.tsx @@ -288,7 +288,7 @@ export const EndpointPolicyCreateExtension = memo - +

        {endpointPresetsMapping[endpointPreset].note}{' '} diff --git a/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/policy_details.tsx b/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/policy_details.tsx index 13f18d071d543..f21304640ae58 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/policy_details.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/policy_details.tsx @@ -75,7 +75,7 @@ export const PolicyDetails = React.memo(() => { if (policyApiError) { return ( - + {policyApiError?.message} diff --git a/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/advanced_section.tsx b/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/advanced_section.tsx index 2720126987117..45cfa03e877a8 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/advanced_section.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/advanced_section.tsx @@ -155,6 +155,7 @@ export const AdvancedSection = memo( {isEditMode && ( <> 0 && ( <> ( if (automaticUpdatesEnabled) { return ( ) : hasError || !node ? ( ( ({ isOnlyDetectionAlerts, title }) => isOnlyDetectionAlerts ? ( - + ) : null ); diff --git a/x-pack/solutions/security/plugins/security_solution/public/timelines/components/edit_data_provider/index.tsx b/x-pack/solutions/security/plugins/security_solution/public/timelines/components/edit_data_provider/index.tsx index aac2a1b7128a3..74d0dc852c492 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/timelines/components/edit_data_provider/index.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/timelines/components/edit_data_provider/index.tsx @@ -271,6 +271,7 @@ export const StatefulEditDataProvider = React.memo( {type === DataProviderTypeEnum.template && showComboBoxInput && ( <> = ({ {showCallOutUnauthorizedMsg && ( = ({ {status === TimelineStatusEnum.immutable && (