Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Osquery][Defend Workflows] No responses for alert on flyout #166916

Merged
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import styled from 'styled-components';
import type { EuiTabbedContentTab } from '@elastic/eui';
import { EuiNotificationBadge, EuiSpacer } from '@elastic/eui';
import type { Ecs } from '@kbn/cases-plugin/common';
import { FormattedMessage } from '@kbn/i18n-react';
import type { SearchHit } from '../../../../common/search_strategy';
import type {
ExpandedEventFieldsObject,
Expand Down Expand Up @@ -71,7 +72,12 @@ export const useResponseActionsView = <T extends object = JSX.Element>({
ruleName={ruleName}
ecsData={ecsData}
/>
) : null}
) : (
<FormattedMessage
id="xpack.securitySolution.eventDetails.responseActionsViewNoActions"
defaultMessage="There are no response actions defined for this event."
/>
)}
</TabContentWrapper>
</>
);
Expand Down