From c2e90b1a7b74e2bc4aa0500cb308e7b75e5c401d Mon Sep 17 00:00:00 2001 From: Adrian Date: Mon, 18 Dec 2023 13:35:46 +0200 Subject: [PATCH] fix badly formatted conditions --- docs/3.0/dynamic-filters.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/3.0/dynamic-filters.md b/docs/3.0/dynamic-filters.md index cc9ebcf9..0778899b 100644 --- a/docs/3.0/dynamic-filters.md +++ b/docs/3.0/dynamic-filters.md @@ -86,12 +86,12 @@ This filter will give you options from the database. ### Conditions - - = (equals) - - != (is different) - - > (greater than) - - >= (greater than or equal to) - - < (lower than) - - <= (lower than or equal to) + - `=` (equals) + - `!=` (is different) + - `>` (greater than) + - `>=` (greater than or equal to) + - `<` (lower than) + - `<=` (lower than or equal to) - Is present - Is blank :::