Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[stable28] fix(a11y): Unified search headings the sequel #42777

Merged
merged 2 commits into from
Feb 1, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions core/src/views/UnifiedSearchModal.vue
Original file line number Diff line number Diff line change
@@ -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">
Expand All @@ -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"
Expand Down
Loading