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] Mass operations (severity, priority, assignee...) on cases and containers (#6049) #8693

Open
wants to merge 3 commits into
base: release/6.4.0
Choose a base branch
from
Open
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/front/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -1337,6 +1337,7 @@
"Imports": "Importe",
"In all the database": "In der gesamten Datenbank",
"In Carousel": "Im Karussell",
"In containers": "In Containern",
"In OpenCTI, a predictable STIX ID is generated based on one or multiple attributes of the entity.": "In OpenCTI wird eine vorhersagbare STIX-ID basierend auf einem oder mehreren Attributen der Entität generiert.",
"In platform": "Auf dem Bahnsteig",
"in progress": "in Arbeit",
Expand Down
1 change: 1 addition & 0 deletions opencti-platform/opencti-front/lang/front/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1337,6 +1337,7 @@
"Imports": "Imports",
"In all the database": "In all the database",
"In Carousel": "In Carousel",
"In containers": "In containers",
"In OpenCTI, a predictable STIX ID is generated based on one or multiple attributes of the entity.": "In OpenCTI, a predictable STIX ID is generated based on one or multiple attributes of the entity.",
"In platform": "In platform",
"in progress": "in progress",
Expand Down
1 change: 1 addition & 0 deletions opencti-platform/opencti-front/lang/front/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -1337,6 +1337,7 @@
"Imports": "Importaciones",
"In all the database": "En toda la base de datos",
"In Carousel": "Carrusel",
"In containers": "En contenedores",
"In OpenCTI, a predictable STIX ID is generated based on one or multiple attributes of the entity.": "En OpenCTI, se genera un STIX ID predictivo basado en uno o más atributos de esta entidad.",
"In platform": "En plataforma",
"in progress": "en curso",
Expand Down
1 change: 1 addition & 0 deletions opencti-platform/opencti-front/lang/front/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -1337,6 +1337,7 @@
"Imports": "Importations",
"In all the database": "Dans toute la base",
"In Carousel": "Carrousel",
"In containers": "Dans les conteneurs",
"In OpenCTI, a predictable STIX ID is generated based on one or multiple attributes of the entity.": "Dans OpenCTI, un ID STIX prédictif est généré basé sur un ou plusieurs attributs de cette entité.",
"In platform": "Dans la plate-forme",
"in progress": "en cours",
Expand Down
1 change: 1 addition & 0 deletions opencti-platform/opencti-front/lang/front/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -1337,6 +1337,7 @@
"Imports": "インポート",
"In all the database": "すべてのデータベースで",
"In Carousel": "カルーセル",
"In containers": "コンテナ",
"In OpenCTI, a predictable STIX ID is generated based on one or multiple attributes of the entity.": "OpenCTIでは、1つまたは複数の属性からSTIX IDが生成されます。",
"In platform": "プラットホームで",
"in progress": "進行中",
Expand Down
1 change: 1 addition & 0 deletions opencti-platform/opencti-front/lang/front/ko.json
Original file line number Diff line number Diff line change
Expand Up @@ -1337,6 +1337,7 @@
"Imports": "Imports",
"In all the database": "모든 데이터베이스에서",
"In Carousel": "캐러셀에서",
"In containers": "컨테이너에서",
"In OpenCTI, a predictable STIX ID is generated based on one or multiple attributes of the entity.": "OpenCTI에서는 엔터티의 하나 또는 여러 속성을 기반으로 예측 가능한 STIX ID가 생성됩니다.",
"In platform": "플랫폼에서",
"in progress": "진행 중",
Expand Down
1 change: 1 addition & 0 deletions opencti-platform/opencti-front/lang/front/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -1337,6 +1337,7 @@
"Imports": "导入",
"In all the database": "在所有数据库中",
"In Carousel": "在轮播",
"In containers": "集装箱",
"In OpenCTI, a predictable STIX ID is generated based on one or multiple attributes of the entity.": "在 OpenCTI 中,基于实体的一个或多个属性生成可预测的 STIX ID。",
"In platform": "在平台上",
"in progress": "进行中",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { Option } from './ReferenceField';
import { ObjectParticipantFieldMembersSearchQuery$data } from './__generated__/ObjectParticipantFieldMembersSearchQuery.graphql';
import { UserContext } from '../../../../utils/hooks/useAuth';

const objectParticipantFieldMembersSearchQuery = graphql`
export const objectParticipantFieldMembersSearchQuery = graphql`
query ObjectParticipantFieldMembersSearchQuery($search: String, $first: Int, $entityTypes: [MemberType!]) {
members(search: $search, first: $first, entityTypes: $entityTypes) {
edges {
Expand Down
Loading