diff --git a/dev/prod/src/platform.ts b/dev/prod/src/platform.ts
index 110f97297d..b784411e2c 100644
--- a/dev/prod/src/platform.ts
+++ b/dev/prod/src/platform.ts
@@ -40,7 +40,7 @@ import telegram, { telegramId } from '@hcengineering/telegram'
import { templatesId } from '@hcengineering/templates'
import tracker, { trackerId } from '@hcengineering/tracker'
import uiPlugin from '@hcengineering/ui'
-import { viewId } from '@hcengineering/view'
+import view, { viewId } from '@hcengineering/view'
import workbench, { workbenchId } from '@hcengineering/workbench'
import { bitrixId } from '@hcengineering/bitrix'
@@ -154,6 +154,8 @@ export async function configurePlatform() {
setMetadata(textEditor.metadata.CollaboratorUrl, config.COLLABORATOR_URL ?? 'ws://locahost:3078')
setMetadata(uiPlugin.metadata.DefaultApplication, login.component.LoginApp)
+
+ setMetadata(uiPlugin.metadata.SearchPopup, view.component.ActionsPopup)
const languages = config.LANGUAGES ? (config.LANGUAGES as string).split(',').map((l) => l.trim()) : ['en', 'ru']
diff --git a/packages/ui/src/components/internal/Root.svelte b/packages/ui/src/components/internal/Root.svelte
index 0de51013db..fa7b868ec9 100644
--- a/packages/ui/src/components/internal/Root.svelte
+++ b/packages/ui/src/components/internal/Root.svelte
@@ -15,6 +15,7 @@
import FontSizeSelector from './FontSizeSelector.svelte'
import LangSelector from './LangSelector.svelte'
import ThemeSelector from './ThemeSelector.svelte'
+ import SearchSelector from './SearchSelector.svelte'
let application: AnyComponent | undefined
@@ -166,8 +167,6 @@
{:else if status.severity !== Severity.OK}
- {:else}
- {getMetadata(uiPlugin.metadata.PlatformTitle)}
{/if}
@@ -175,6 +174,7 @@
+
diff --git a/packages/ui/src/components/internal/SearchSelector.svelte b/packages/ui/src/components/internal/SearchSelector.svelte
new file mode 100644
index 0000000000..cf7d4527e3
--- /dev/null
+++ b/packages/ui/src/components/internal/SearchSelector.svelte
@@ -0,0 +1,25 @@
+
+
+{#if isLoggedIn}
+
+{/if}
diff --git a/packages/ui/src/components/internal/icons/Search.svelte b/packages/ui/src/components/internal/icons/Search.svelte
new file mode 100644
index 0000000000..20308727b1
--- /dev/null
+++ b/packages/ui/src/components/internal/icons/Search.svelte
@@ -0,0 +1,12 @@
+
+
+
diff --git a/packages/ui/src/plugin.ts b/packages/ui/src/plugin.ts
index 436b844fba..40df5fed74 100644
--- a/packages/ui/src/plugin.ts
+++ b/packages/ui/src/plugin.ts
@@ -102,7 +102,8 @@ export const uis = plugin(uiId, {
DefaultApplication: '' as Metadata
,
Routes: '' as Metadata