From 6643f7cd9ac8cfb0465dca14c0f9e2e5dbe0820a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Efe=20G=C3=BCrkan=20YALAMAN?= Date: Wed, 18 Feb 2026 19:43:12 +0100 Subject: [PATCH] [Inference Endpoints][A11y] Prevent repetitive "search" label (#253224) ## Summary Updates a11y labels to prevent multiple "Search" announcement on Inference Endpoints filter. https://github.com/user-attachments/assets/087968e4-b746-4998-8e1f-a5818f0d01e5 ### Checklist Check the PR satisfies following conditions. Reviewers should verify this PR satisfies this list as well. - [x] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/src/platform/packages/shared/kbn-i18n/README.md) - [ ] ~[Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials~ - [ ] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [ ] ~If a plugin configuration key changed, check if it needs to be allowlisted in the cloud and added to the [docker list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker)~ - [ ] ~This was checked for breaking HTTP API changes, and any breaking changes have been approved by the breaking-change committee. The `release_note:breaking` label should be applied in these situations.~ - [ ] [Flaky Test Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was used on any tests changed - [x] The PR description includes the appropriate Release Notes section, and the correct `release_note:*` label is applied per the [guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) - [x] Review the [backport guidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing) and apply applicable `backport:*` labels. (cherry picked from commit cf602addb61a58ca43e23e86ea3d8afcab037971) --- .../all_inference_endpoints/search/table_search.tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/x-pack/solutions/search/plugins/search_inference_endpoints/public/components/all_inference_endpoints/search/table_search.tsx b/x-pack/solutions/search/plugins/search_inference_endpoints/public/components/all_inference_endpoints/search/table_search.tsx index b3989d60d9123..c657b654c1366 100644 --- a/x-pack/solutions/search/plugins/search_inference_endpoints/public/components/all_inference_endpoints/search/table_search.tsx +++ b/x-pack/solutions/search/plugins/search_inference_endpoints/public/components/all_inference_endpoints/search/table_search.tsx @@ -7,6 +7,7 @@ import { EuiFieldSearch } from '@elastic/eui'; import React, { useCallback } from 'react'; +import { i18n } from '@kbn/i18n'; interface TableSearchComponentProps { searchKey: string; @@ -24,8 +25,14 @@ export const TableSearch: React.FC = ({ searchKey, se return ( setSearchKey(e.target.value)} onSearch={onSearch} value={searchKey}