Skip to content
This repository was archived by the owner on May 29, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/navigation/MainMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { navigationStore } from '../store/store.js'
<CubeOutline :size="20" />
</template>
</NcAppNavigationItem>
<NcAppNavigationItem :active="navigationStore.selected === 'search'" name="Search" @click="navigationStore.setSelected('search')">
<NcAppNavigationItem :active="navigationStore.selected === 'search'" name="Objects table" @click="navigationStore.setSelected('search')">
<template #icon>
<LayersSearchOutline :size="20" />
</template>
Expand Down
4 changes: 2 additions & 2 deletions src/views/search/SearchIndex.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import { searchStore } from '../../store/store.js'
<template>
<NcAppContent>
<h2 class="pageHeader">
Search objects
Objects table
</h2>

<NcNoteCard v-if="!searchStore.searchObjectsResult?.length && !searchStore.searchObjectsLoading" type="info">
<p>There are no objects that match your search</p>
<p>There are no objects that match this filter</p>
</NcNoteCard>

<NcLoadingIcon v-if="searchStore.searchObjectsLoading"
Expand Down