Skip to content

Commit

Permalink
Merge pull request #12998 from nextcloud/fix/search-box-attribute-war…
Browse files Browse the repository at this point in the history
…ning

fix: warning from `false` SearchBox's aria-describedby value
  • Loading branch information
Antreesy authored Aug 15, 2024
2 parents 1b0ab5a + 77de58c commit f9058e1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
:value.sync="searchText"
:is-focused.sync="isFocused"
:placeholder-text="searchBoxPlaceholder"
:aria-describedby="showSearchBoxDescription && searchBoxDescriptionId"
:aria-describedby="showSearchBoxDescription ? searchBoxDescriptionId : undefined"
@input="handleInput"
@keydown.enter="addParticipants(participantPhoneItem)"
@abort-search="abortSearch" />
Expand Down

0 comments on commit f9058e1

Please sign in to comment.