diff --git a/commafeed-client/src/pages/app/FeedDetailsPage.tsx b/commafeed-client/src/pages/app/FeedDetailsPage.tsx
index a36c6bf4..a56380ec 100644
--- a/commafeed-client/src/pages/app/FeedDetailsPage.tsx
+++ b/commafeed-client/src/pages/app/FeedDetailsPage.tsx
@@ -33,38 +33,6 @@ import { FilteringExpressionEditor } from "@/components/content/edit/FilteringEx
import { Loader } from "@/components/Loader"
import { RelativeDate } from "@/components/RelativeDate"
-function FilteringExpressionDescription() {
- const example = url.contains('youtube') or (author eq 'athou' and title.contains('github'))
- return (
-
-
-
- If not empty, an expression evaluating to 'true' or 'false'. If false, new entries for this feed will be marked as read
- automatically.
-
-
-
-
- Available variables are 'title', 'content', 'url' 'author' and 'categories' and their content is converted to lower case
- to ease string comparison.
-
-
-
- Example: {example}.
-
-
-
- Complete syntax is available
-
- here
-
- .
-
-
-
- )
-}
-
export function FeedDetailsPage() {
const { id } = useParams()
if (!id) throw new Error("id required")
@@ -196,11 +164,6 @@ export function FeedDetailsPage() {
form.setFieldValue("filter", value)} />
- Filtering expression}
- description={}
- {...form.getInputProps("filter")}
- />
Receive notifications}
{...form.getInputProps("notifyOnNewEntries", { type: "checkbox" })}