Skip to content

Commit e88b417

Browse files
committed
[frontend/backend] typo: only equal to
1 parent 1131740 commit e88b417

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed
993 Bytes
Loading
84 Bytes
Loading
523 Bytes
Loading
224 Bytes
Loading
-951 Bytes
Loading
1.14 KB
Loading

docs/docs/reference/filters.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -131,31 +131,31 @@ filters = {
131131

132132
<details>
133133

134-
<summary><strong>'Only equals to' and 'Not only equals to' detailed examples</strong></summary>
134+
<summary><strong>'Only equal to' and 'Not only equal to' detailed examples</strong></summary>
135135

136136
- `only_eq_to` with a single value: fields having exactly one value, corresponding to the filter value
137137

138-
![Only Equals To filter operator with one value](./assets/filters-OnlyEqTo.png)
138+
![Only Equal To filter operator with one value](./assets/filters-OnlyEqTo.png)
139139

140140
- `only_eq_to` with several values and `or` local mode: fields having one value only among the filter values
141141

142-
![Only Equals To filter operator with 'or' mode](./assets/filters-OnlyEqTo-or.png)
142+
![Only Equal To filter operator with 'or' mode](./assets/filters-OnlyEqTo-or.png)
143143

144144
- `only_eq_to` with several values and `and` local mode: fields having exactly all the filter values, and no other values
145145

146-
![Only Equals To filter operator with 'or' mode](./assets/filters-OnlyEqTo-and.png)
146+
![Only Equal To filter operator with 'or' mode](./assets/filters-OnlyEqTo-and.png)
147147

148148
- `not_only_eq_to` with a single value
149149

150-
![Not Only Equals To filter operator with one value](./assets/filters-NotOnlyEqTo.png)
150+
![Not Only Equal To filter operator with one value](./assets/filters-NotOnlyEqTo.png)
151151

152152
- `not_only_eq_to` with several values and `or` local mode
153153

154-
![Not Only Equals To filter operator with 'or' mode](./assets/filters-NotOnlyEqTo-or.png)
154+
![Not Only Equal To filter operator with 'or' mode](./assets/filters-NotOnlyEqTo-or.png)
155155

156156
- `not_only_eq_to` with several values and `and` local mode
157157

158-
![Not Only Equals To filter operator with 'or' mode](./assets/filters-NotOnlyEqTo-and.png)
158+
![Not Only Equal To filter operator with 'or' mode](./assets/filters-NotOnlyEqTo-and.png)
159159

160160

161161
</details>

opencti-platform/opencti-front/lang/front/en.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2868,7 +2868,7 @@
28682868
"Not subscribed": "Not subscribed",
28692869
"not_contains": "not contains",
28702870
"not_ends_with": "not ends with",
2871-
"not_only_eq_to": "Not only equals to",
2871+
"not_only_eq_to": "Not only equal to",
28722872
"not_starts_with": "not starts with",
28732873
"Note type": "Note type",
28742874
"Note types": "Note types",
@@ -2982,7 +2982,7 @@
29822982
"Only lowercase letters, numbers and hyphens are allowed": "Only lowercase letters, numbers and hyphens are allowed",
29832983
"Only successful tests allow the ingestion creation.": "Only successful tests allow the ingestion creation.",
29842984
"Only successful tests allow the ingestion edition.": "Only successful tests allow the ingestion edition.",
2985-
"only_eq_to": "Only equals to",
2985+
"only_eq_to": "Only equal to",
29862986
"Open chatbot": "Open chatbot",
29872987
"Open correlation details": "Open correlation details",
29882988
"Open export panel": "Open export panel",

opencti-platform/opencti-front/src/components/filters/FilterChipPopover.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ const OperatorKeyValues: {
8686
not_ends_with: 'Not ends with',
8787
search: 'Search',
8888
within: 'Within',
89-
only_eq_to: 'Only equals to',
90-
not_only_eq_to: 'Not only equals to',
89+
only_eq_to: 'Only equal to',
90+
not_only_eq_to: 'Not only equal to',
9191
};
9292

9393
export const FilterChipPopover: FunctionComponent<FilterChipMenuProps> = ({

0 commit comments

Comments
 (0)