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

[frontend] Add indicator pattern filter #5590

Merged
merged 1 commit into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading