fix(docs): wrap numeric operators in backticks to unbreak MDX parse

MDX treats bare < / > as JSX tags. The numeric operator table in
smart-filters had unescaped comparison operators, which broke the
Vercel build.
This commit is contained in:
Rohith Gilla 2026-04-10 08:38:13 +05:30
parent 2aef45295b
commit 60282cd344
No known key found for this signature in database

View file

@ -32,12 +32,12 @@ Smart Filters let you narrow down query results without rewriting SQL. Filters r
| Operator | Description |
|----------|-------------|
| = | Equal to |
| != | Not equal to |
| > | Greater than |
| >= | Greater than or equal |
| < | Less than |
| <= | Less than or equal |
| `=` | Equal to |
| `!=` | Not equal to |
| `>` | Greater than |
| `>=` | Greater than or equal |
| `<` | Less than |
| `<=` | Less than or equal |
| between | Range (two values) |
| is empty | NULL |