Skip to content

Commit

Permalink
correct i18n error
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-tavares committed Oct 20, 2022
1 parent 1fb37ad commit 83813a7
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ import type { MaybeImmutable } from '../../../../common/endpoint/types';
import { getHostActionFileDownloadUrl } from '../../services/response_actions/get_host_action_file_download_url';
import type { ActionDetails } from '../../../../common/endpoint/types/actions';

const PASSCODE_VALUE = Object.freeze({
passcode: 'elastic',
});

const STYLE_INHERIT_FONT_FAMILY = Object.freeze<CSSProperties>({
fontFamily: 'inherit',
});
Expand Down Expand Up @@ -70,7 +66,9 @@ export const ResponseActionFileDownloadLink = memo<ResponseActionFileDownloadLin
<FormattedMessage
id="xpack.securitySolution.responseActionFileDownloadLink.passcodeInfo"
defaultMessage="(ZIP file passcode: {passcode})"
values={PASSCODE_VALUE}
values={{
passcode: 'elastic',
}}
/>
</EuiText>
</>
Expand Down

0 comments on commit 83813a7

Please sign in to comment.