@@ -67,13 +67,13 @@ export const EndpointDetails = memo(({ details }: { details: HostMetadata }) =>
6767 const detailsResultsUpper = useMemo ( ( ) => {
6868 return [
6969 {
70- title : i18n . translate ( 'xpack.securitySolution.endpoint.host. details.os' , {
70+ title : i18n . translate ( 'xpack.securitySolution.endpoint.details.os' , {
7171 defaultMessage : 'OS' ,
7272 } ) ,
7373 description : details . host . os . full ,
7474 } ,
7575 {
76- title : i18n . translate ( 'xpack.securitySolution.endpoint.host. details.lastSeen' , {
76+ title : i18n . translate ( 'xpack.securitySolution.endpoint.details.lastSeen' , {
7777 defaultMessage : 'Last Seen' ,
7878 } ) ,
7979 description : < FormattedDateAndTime date = { new Date ( details [ '@timestamp' ] ) } /> ,
@@ -124,7 +124,7 @@ export const EndpointDetails = memo(({ details }: { details: HostMetadata }) =>
124124 const detailsResultsPolicy = useMemo ( ( ) => {
125125 return [
126126 {
127- title : i18n . translate ( 'xpack.securitySolution.endpoint.host. details.policy' , {
127+ title : i18n . translate ( 'xpack.securitySolution.endpoint.details.policy' , {
128128 defaultMessage : 'Integration' ,
129129 } ) ,
130130 description : (
@@ -139,7 +139,7 @@ export const EndpointDetails = memo(({ details }: { details: HostMetadata }) =>
139139 ) ,
140140 } ,
141141 {
142- title : i18n . translate ( 'xpack.securitySolution.endpoint.host. details.policyStatus' , {
142+ title : i18n . translate ( 'xpack.securitySolution.endpoint.details.policyStatus' , {
143143 defaultMessage : 'Configuration response' ,
144144 } ) ,
145145 description : (
@@ -155,7 +155,7 @@ export const EndpointDetails = memo(({ details }: { details: HostMetadata }) =>
155155 >
156156 < EuiText size = "m" >
157157 < FormattedMessage
158- id = "xpack.securitySolution.endpoint.host. details.policyStatusValue"
158+ id = "xpack.securitySolution.endpoint.details.policyStatusValue"
159159 defaultMessage = "{policyStatus, select, success {Success} warning {Warning} failure {Failed} other {Unknown}}"
160160 values = { { policyStatus } }
161161 />
@@ -169,7 +169,7 @@ export const EndpointDetails = memo(({ details }: { details: HostMetadata }) =>
169169 const detailsResultsLower = useMemo ( ( ) => {
170170 return [
171171 {
172- title : i18n . translate ( 'xpack.securitySolution.endpoint.host. details.ipAddress' , {
172+ title : i18n . translate ( 'xpack.securitySolution.endpoint.details.ipAddress' , {
173173 defaultMessage : 'IP Address' ,
174174 } ) ,
175175 description : (
@@ -181,13 +181,13 @@ export const EndpointDetails = memo(({ details }: { details: HostMetadata }) =>
181181 ) ,
182182 } ,
183183 {
184- title : i18n . translate ( 'xpack.securitySolution.endpoint.host. details.hostname' , {
184+ title : i18n . translate ( 'xpack.securitySolution.endpoint.details.hostname' , {
185185 defaultMessage : 'Hostname' ,
186186 } ) ,
187187 description : details . host . hostname ,
188188 } ,
189189 {
190- title : i18n . translate ( 'xpack.securitySolution.endpoint.host. details.endpointVersion' , {
190+ title : i18n . translate ( 'xpack.securitySolution.endpoint.details.endpointVersion' , {
191191 defaultMessage : 'Endpoint Version' ,
192192 } ) ,
193193 description : details . agent . version ,
@@ -218,7 +218,7 @@ export const EndpointDetails = memo(({ details }: { details: HostMetadata }) =>
218218 >
219219 < EuiIcon type = "savedObjectsApp" className = "linkToAppIcon" />
220220 < FormattedMessage
221- id = "xpack.securitySolution.endpoint.host. details.linkToIngestTitle"
221+ id = "xpack.securitySolution.endpoint.details.linkToIngestTitle"
222222 defaultMessage = "Reassign Configuration"
223223 />
224224 < EuiIcon type = "popout" className = "linkToAppPopoutIcon" />
0 commit comments