diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-02-01 17:13:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-01 17:13:45 +0100 |
commit | e49c331b7156e8a39052566f1da0f65b76f3c974 (patch) | |
tree | b6bc30ce7b23d76634e9d47639b9a684acce5220 /core | |
parent | 5ea2f483d9c943f86104c8e0b51627b0cb266327 (diff) | |
parent | d6a58ef792c00120353b0ca9919a6be38f3da602 (diff) | |
download | nextcloud-server-e49c331b7156e8a39052566f1da0f65b76f3c974.tar.gz nextcloud-server-e49c331b7156e8a39052566f1da0f65b76f3c974.zip |
Merge pull request #42777 from nextcloud/backport/42292/stable28
[stable28] fix(a11y): Unified search headings the sequel
Diffstat (limited to 'core')
-rw-r--r-- | core/src/views/UnifiedSearchModal.vue | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/src/views/UnifiedSearchModal.vue b/core/src/views/UnifiedSearchModal.vue index 8d2d2820495..59afa04d0ab 100644 --- a/core/src/views/UnifiedSearchModal.vue +++ b/core/src/views/UnifiedSearchModal.vue @@ -1,7 +1,6 @@ <template> <NcModal id="unified-search" ref="unifiedSearchModal" - :name="t('core', 'Unified search')" :show.sync="internalIsVisible" :clear-view-delay="0" @close="closeModal"> @@ -11,7 +10,7 @@ @update:is-open="showDateRangeModal = $event" /> <!-- Unified search form --> <div ref="unifiedSearch" class="unified-search-modal"> - <h1>{{ t('core', 'Unified search') }}</h1> + <h2>{{ t('core', 'Unified search') }}</h2> <NcInputField ref="searchInput" :value.sync="searchQuery" type="text" |