Skip to content

Commit

Permalink
[frontend] Add indicator pattern filter (#5590)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpkha authored Jan 19, 2024
1 parent b94436d commit 91832bc
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions opencti-platform/opencti-front/lang/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -843,6 +843,7 @@
"Create observables from this indicator": "Erstellen von Observablen aus diesem Indikator",
"Create an indicator": "Erstellen eines Indikators",
"Indicator pattern": "Indikatormuster",
"pattern": "Indikatormuster",
"Valid from": "Gültig ab",
"Valid until": "Gültig bis",
"Update an indicator": "Aktualisierung eines Indikators",
Expand Down
3 changes: 2 additions & 1 deletion opencti-platform/opencti-front/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -2500,5 +2500,6 @@
"The tag has been added": "The tag has been added",
"The tag has been removed": "The tag has been removed",
"I have read and comply with the above statement": "I have read and comply with the above statement",
"You need to activate OpenCTI enterprise edition to use this feature.": "You need to activate OpenCTI enterprise edition to use this feature."
"You need to activate OpenCTI enterprise edition to use this feature.": "You need to activate OpenCTI enterprise edition to use this feature.",
"pattern": "Indicator pattern"
}
1 change: 1 addition & 0 deletions opencti-platform/opencti-front/lang/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -1214,6 +1214,7 @@
"Pattern": "Patrón",
"Pattern type": "Tipo de patrón",
"Indicator pattern": "Patrón del indicador",
"pattern": "Patrón del indicador",
"Valid from": "Válido desde",
"Valid until": "Válido hasta",
"Score": "Puntuación",
Expand Down
1 change: 1 addition & 0 deletions opencti-platform/opencti-front/lang/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -1199,6 +1199,7 @@
"Pattern": "Motif",
"Pattern type": "Type de motif",
"Indicator pattern": "Motif de l'indicateur",
"pattern": "Motif de l'indicateur",
"Valid from": "Valide depuis",
"Valid until": "Valide jusqu'à",
"Score": "Score",
Expand Down
1 change: 1 addition & 0 deletions opencti-platform/opencti-front/lang/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -1187,6 +1187,7 @@
"Pattern": "パターン",
"Pattern type": "パターンタイプ",
"Indicator pattern": "インジケータパターン",
"pattern": "インジケータパターン",
"Valid from": "有効期間(開始)",
"Valid until": "有効期間(終了)",
"Score": "スコア",
Expand Down
1 change: 1 addition & 0 deletions opencti-platform/opencti-front/lang/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -1159,6 +1159,7 @@
"Pattern": "模式",
"Pattern type": "模式类型",
"Indicator pattern": "攻击指标模式",
"pattern": "攻击指标模式",
"Valid from": "有效期从",
"Valid until": "有效期至",
"Score": "分数",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ const Indicators = () => {
'confidence',
'indicator_types',
'name',
'pattern',
]}
>
{queryRef && (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export const textFilters = [
'name',
'description',
'value',
'pattern',
];

// filters that can have 'eq' or 'not_eq' operator
Expand Down

0 comments on commit 91832bc

Please sign in to comment.