mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix(unified-search): fix code highlighting
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
This commit is contained in:
parent
47c64dadf4
commit
f26961d74a
1 changed files with 5 additions and 5 deletions
|
|
@ -77,12 +77,12 @@
|
|||
placement="bottom"
|
||||
container=".unified-search__input-wrapper">
|
||||
<!-- FIXME use element ref for container after https://github.com/nextcloud/nextcloud-vue/pull/3462 -->
|
||||
<NcActionButton v-for="type in availableFilters"
|
||||
:key="type"
|
||||
<NcActionButton v-for="filter in availableFilters"
|
||||
:key="filter"
|
||||
icon="icon-filter"
|
||||
:title="t('core', 'Search for {name} only', { name: typesMap[type] })"
|
||||
@click.stop="onClickFilter(`in:${type}`)">
|
||||
{{ `in:${type}` }}
|
||||
:title="t('core', 'Search for {name} only', { name: typesMap[filter] })"
|
||||
@click.stop="onClickFilter(`in:${filter}`)">
|
||||
{{ `in:${filter}` }}
|
||||
</NcActionButton>
|
||||
</NcActions>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue