Skip to content

Commit

Permalink
Added threat field label to the UI
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankHassanabad committed Sep 30, 2020
1 parent 6f27124 commit a4fc2ad
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export const EntryItem: React.FC<EntryItemProps> = ({

if (isFirst) {
return (
<EuiFormRow label={i18n.FIELD} data-test-subj="threatFieldInputFormRow">
<EuiFormRow label={i18n.THREAT_FIELD} data-test-subj="threatFieldInputFormRow">
{comboBox}
</EuiFormRow>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ export const FIELD = i18n.translate('xpack.securitySolution.threatMatch.fieldDes
defaultMessage: 'Field',
});

export const THREAT_FIELD = i18n.translate(
'xpack.securitySolution.threatMatch.threatFieldDescription',
{
defaultMessage: 'Threat index field',
}
);

export const FIELD_PLACEHOLDER = i18n.translate(
'xpack.securitySolution.threatMatch.fieldPlaceholderDescription',
{
Expand Down

0 comments on commit a4fc2ad

Please sign in to comment.