mirror of
https://github.com/Rohithgilla12/data-peek
synced 2026-04-21 12:57:16 +00:00
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:
parent
2aef45295b
commit
60282cd344
1 changed files with 6 additions and 6 deletions
|
|
@ -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 |
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue