From 4644d84956b635022208780103c33768e084c546 Mon Sep 17 00:00:00 2001 From: Hofi Date: Wed, 23 Jul 2025 19:01:43 +0200 Subject: [PATCH] Update 002_Comparing_macro_values.md added missing filter operators Signed-off-by: Hofi --- .../030_Filters/002_Comparing_macro_values.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/doc/_admin-guide/080_Log/030_Filters/002_Comparing_macro_values.md b/doc/_admin-guide/080_Log/030_Filters/002_Comparing_macro_values.md index 34656e7..86aac03 100644 --- a/doc/_admin-guide/080_Log/030_Filters/002_Comparing_macro_values.md +++ b/doc/_admin-guide/080_Log/030_Filters/002_Comparing_macro_values.md @@ -103,11 +103,13 @@ Note that: The following operators are available: -| Numerical operator |String operator | Meaning| -|--------------------|-----------------|----------------------| -| == | eq | Equals| -| != | ne | Not equal to| -| \> | gt | Greater than| -| \< | lt | Less than| -| \>= | ge | Greater than or equal| -| =\< | le | Less than or equal| +| Numerical Operator | String Operator | Meaning | +|--------------------|-----------------|----------------------------------| +| == | eq | Equals | +| === | | Equals and same type | +| != | ne | Not equal to | +| !== | | Not equal to and same type | +| > | gt | Greater than | +| < | lt | Less than | +| >= | ge | Greater than or equal to | +| <= | le | Less than or equal to |