Skip to content

Commit

Permalink
chore: remove everything related to search for now (to restore when s…
Browse files Browse the repository at this point in the history
…earch is implemented)
  • Loading branch information
valeriansaliou committed Feb 14, 2025
1 parent 69e7cbe commit 11e303f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 48 deletions.
7 changes: 1 addition & 6 deletions src/assemblies/inbox/InboxTopbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,6 @@ layout-toolbar(
size="18px"
)

base-separator

topbar-actions-search

encryption-settings(
v-if="popups.encryptionSettings.visible"
@close="onPopupEncryptionSettingsClose"
Expand All @@ -126,7 +122,6 @@ import Store from "@/store";
// PROJECT: COMPONENTS
import BaseAlert from "@/components/base/BaseAlert.vue";
import TopbarActionsHistory from "@/components/topbar/TopbarActionsHistory.vue";
import TopbarActionsSearch from "@/components/topbar/TopbarActionsSearch.vue";

// PROJECT: POPUPS
import EncryptionSettings from "@/popups/inbox/EncryptionSettings.vue";
Expand All @@ -146,7 +141,7 @@ const JID_TRUNCATE_LENGTH = 15;
export default {
name: "InboxTopbar",

components: { TopbarActionsHistory, TopbarActionsSearch, EncryptionSettings },
components: { TopbarActionsHistory, EncryptionSettings },

props: {
jid: {
Expand Down
7 changes: 1 addition & 6 deletions src/assemblies/spotlight/SpotlightTopbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@ layout-toolbar(
:disabled="action.disabled"
context="grey"
)

base-separator

topbar-actions-search
</template>

<!-- **********************************************************************
Expand All @@ -53,7 +49,6 @@ import { PropType } from "vue";

// PROJECT: COMPONENTS
import TopbarActionsHistory from "@/components/topbar/TopbarActionsHistory.vue";
import TopbarActionsSearch from "@/components/topbar/TopbarActionsSearch.vue";

// PROJECT: COMPOSABLES
import { useInterfaceMounted } from "@/composables/interface";
Expand All @@ -79,7 +74,7 @@ export interface Action {
export default {
name: "SpotlightTopbar",

components: { TopbarActionsHistory, TopbarActionsSearch },
components: { TopbarActionsHistory },

props: {
actions: {
Expand Down
36 changes: 0 additions & 36 deletions src/components/topbar/TopbarActionsSearch.vue

This file was deleted.

0 comments on commit 11e303f

Please sign in to comment.