Skip to content

Commit 21d9035

Browse files
authored
[ES|QL] Fixes warnings in console due to the upgrade of intl libraries (elastic#184926)
## Summary Closes elastic#184872
1 parent bdb722f commit 21d9035

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

packages/kbn-text-based-editor/src/esql_documentation_sections.tsx

+7-4
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ The \`SHOW <item>\` source command returns information about the deployment and
172172
* Use \`SHOW INFO\` to return the deployment's version, build date and hash.
173173
* Use \`SHOW FUNCTIONS\` to return a list of all supported functions and a synopsis of each function.
174174
`,
175+
ignoreTag: true,
175176
description:
176177
'Text is in markdown. Do not translate function names, special characters, or field names like sum(bytes)',
177178
}
@@ -214,9 +215,9 @@ Refer to the [dissect processor documentation](https://www.elastic.co/guide/en/e
214215
215216
\`\`\`
216217
ROW a = "1953-01-23T12:15:00Z - some text - 127.0.0.1"
217-
| DISSECT a "%\\{Y\\}-%\\{M\\}-%\\{D\\}T%\\{h\\}:%\\{m\\}:%\\{s\\}Z - %\\{msg\\} - %\\{ip\\}"
218-
\`\`\`
219-
`,
218+
| DISSECT a "%'\{Y\}-%\{M\}-%\{D\}T%\{h\}:%\{m\}:%\{s\}Z - %\{msg\} - %\{ip\}'"
219+
\`\`\` `,
220+
ignoreTag: true,
220221
description:
221222
'Text is in markdown. Do not translate function names, special characters, or field names like sum(bytes)',
222223
}
@@ -308,6 +309,7 @@ By default (if no \`WITH\` is defined), \`ENRICH\` will add all the enrich field
308309
309310
In case of name collisions, the newly created fields will override the existing fields.
310311
`,
312+
ignoreTag: true,
311313
description:
312314
'Text is in markdown. Do not translate function names, special characters, or field names like sum(bytes)',
313315
}
@@ -376,7 +378,7 @@ Refer to the [grok processor documentation](https://www.elastic.co/guide/en/elas
376378
377379
\`\`\`
378380
ROW a = "12 15.5 15.6 true"
379-
| GROK a "%\\{NUMBER:b:int\\} %\\{NUMBER:c:float\\} %\\{NUMBER:d:double\\} %\\{WORD:e:boolean\\}"
381+
| GROK a "%'{NUMBER:b:int}' %'{NUMBER:c:float}' %'{NUMBER:d:double}' %'{WORD:e:boolean}'"
380382
\`\`\`
381383
`,
382384
description:
@@ -523,6 +525,7 @@ FROM employees
523525
| RENAME first_name AS fn, last_name AS ln
524526
\`\`\`
525527
`,
528+
ignoreTag: true,
526529
description:
527530
'Text is in markdown. Do not translate function names, special characters, or field names like sum(bytes)',
528531
}

0 commit comments

Comments
 (0)