From 2eb729d331ef5176f3dacfeabafc53fc07890d55 Mon Sep 17 00:00:00 2001 From: Nebojsa Vuksic Date: Fri, 1 Aug 2025 11:27:32 +0200 Subject: [PATCH] Remove unnecessary content description in SearchBarWithAutoCompletion icon --- .../plugins/template/components/SearchBarWithAutoCompletion.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/org/jetbrains/plugins/template/components/SearchBarWithAutoCompletion.kt b/src/main/kotlin/org/jetbrains/plugins/template/components/SearchBarWithAutoCompletion.kt index fc21327..9f1681a 100644 --- a/src/main/kotlin/org/jetbrains/plugins/template/components/SearchBarWithAutoCompletion.kt +++ b/src/main/kotlin/org/jetbrains/plugins/template/components/SearchBarWithAutoCompletion.kt @@ -68,7 +68,7 @@ internal fun SearchBarWithAutoCompletion( .focusRequester(focusRequester), placeholder = { Text(searchFieldPlaceholder) }, leadingIcon = { - Icon(AllIconsKeys.Actions.Find, contentDescription = "Find icon", Modifier.padding(end = 8.dp)) + Icon(AllIconsKeys.Actions.Find, contentDescription = null, Modifier.padding(end = 8.dp)) }, trailingIcon = { if (textFieldState.text.isNotBlank()) {