Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Rename "global search" to "unified search" #42094

Merged
merged 2 commits into from Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
169 changes: 0 additions & 169 deletions core/src/components/GlobalSearch/SearchResult.vue

This file was deleted.

@@ -1,26 +1,26 @@
<template>
<NcModal v-if="isModalOpen"
Fenn-CS marked this conversation as resolved.
Show resolved Hide resolved
id="global-search"
id="unified-search"
:name="t('core', 'Custom date range')"
:show.sync="isModalOpen"
:size="'small'"
:clear-view-delay="0"
:title="t('core', 'Custom date range')"
@close="closeModal">
<!-- Custom date range -->
<div class="global-search-custom-date-modal">
<div class="unified-search-custom-date-modal">
<h1>{{ t('core', 'Custom date range') }}</h1>
<div class="global-search-custom-date-modal__pickers">
<NcDateTimePicker :id="'globalsearch-custom-date-range-start'"
<div class="unified-search-custom-date-modal__pickers">
<NcDateTimePicker :id="'unifiedsearch-custom-date-range-start'"
v-model="dateFilter.startFrom"
:label="t('core', 'Pick start date')"
type="date" />
<NcDateTimePicker :id="'globalsearch-custom-date-range-end'"
<NcDateTimePicker :id="'unifiedsearch-custom-date-range-end'"
v-model="dateFilter.endAt"
:label="t('core', 'Pick end date')"
type="date" />
</div>
<div class="global-search-custom-date-modal__footer">
<div class="unified-search-custom-date-modal__footer">
<NcButton @click="applyCustomRange">
{{ t('core', 'Search in date range') }}
<template #icon>
Expand Down Expand Up @@ -80,7 +80,7 @@ export default {
</script>

<style lang="scss" scoped>
.global-search-custom-date-modal {
.unified-search-custom-date-modal {
padding: 10px 20px 10px 20px;

h1 {
Expand Down