From 1f60e3d35a3c83b00554e7bd14f225833f2b90d8 Mon Sep 17 00:00:00 2001 From: Arhey Date: Tue, 7 Mar 2023 03:07:07 +0300 Subject: [PATCH] Update SearchSyntaxPopup.svelte --- src/components/SearchSyntaxPopup.svelte | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/components/SearchSyntaxPopup.svelte b/src/components/SearchSyntaxPopup.svelte index 69d8c8a24..ff1fff49f 100644 --- a/src/components/SearchSyntaxPopup.svelte +++ b/src/components/SearchSyntaxPopup.svelte @@ -5,7 +5,6 @@ export let title = 'Search syntax' let examples = [ { query: 'cat', result: 'Finds channels that have "cat" in their descriptions.' }, - { query: '^dog', result: 'Finds channels whose name starts with "dog".' }, { query: 'cat dog', result: 'Finds channels that have "cat" AND "dog" in their descriptions.' }, { query: 'cat,dog', result: 'Finds channels that have "cat" OR "dog" in their descriptions.' }, { @@ -41,7 +40,7 @@ ] -
+
- Query - Result + Query + Result