File tree Expand file tree Collapse file tree 1 file changed +27
-10
lines changed
x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view Expand file tree Collapse file tree 1 file changed +27
-10
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ import { AdminSearchBar } from './components/search_bar';
6161import { AdministrationListPage } from '../../../components/administration_list_page' ;
6262import { useKibana } from '../../../../../../../../src/plugins/kibana_react/public' ;
6363import { APP_ID } from '../../../../../common/constants' ;
64+ import { LinkToApp } from '../../../../common/components/endpoint/link_to_app' ;
6465
6566const EndpointListNavLink = memo < {
6667 name : string ;
@@ -578,16 +579,32 @@ export const EndpointList = () => {
578579 < >
579580 { areEndpointsEnrolling && ! hasErrorFindingTotals && (
580581 < >
581- < EuiCallOut
582- size = "s"
583- data-test-subj = "endpointsEnrollingNotification"
584- title = {
585- < FormattedMessage
586- id = "xpack.securitySolution.endpoint.list.endpointsEnrolling"
587- defaultMessage = "Endpoints are enrolling and will display soon"
588- />
589- }
590- />
582+ < EuiCallOut size = "s" data-test-subj = "endpointsEnrollingNotification" >
583+ < FormattedMessage
584+ id = "xpack.securitySolution.endpoint.list.endpointsEnrolling"
585+ defaultMessage = "Endpoints are enrolling. {agentsLink} to track progress."
586+ values = { {
587+ agentsLink : (
588+ < LinkToApp
589+ appId = "ingestManager"
590+ appPath = { `#${ pagePathGetters . fleet_agent_list ( {
591+ kuery : 'fleet-agents.packages : "endpoint"' ,
592+ } ) } `}
593+ href = { `${ services ?. application ?. getUrlForApp (
594+ 'ingestManager'
595+ ) } #${ pagePathGetters . fleet_agent_list ( {
596+ kuery : 'fleet-agents.packages : "endpoint"' ,
597+ } ) } `}
598+ >
599+ < FormattedMessage
600+ id = "xpack.securitySolution.endpoint.list.endpointsEnrolling.viewAgentsLink"
601+ defaultMessage = "View agents"
602+ />
603+ </ LinkToApp >
604+ ) ,
605+ } }
606+ />
607+ </ EuiCallOut >
591608 < EuiSpacer size = "m" />
592609 </ >
593610 ) }
You can’t perform that action at this time.
0 commit comments