Skip to content

Commit

Permalink
Fix numeric comparison in Filtering projects (github#30784)
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss authored Jan 2, 2024
1 parent 4573062 commit a5bde76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ You can use `>`, `>=`, `<`, and `<=` to compare number, date, and iteration fiel
| <code>field:&gt;<em>VALUE</em></code> | **priority:&gt;1** will show items with a priority greater than 1.
| <code>field:&gt;=<em>VALUE</em></code> | **date:&gt;=2022-06-01** will show items with a date of "2022-06-01" or later.
| <code>field:&lt;<em>VALUE</em></code> | **iteration:<"Iteration 5"** will show items with an iteration before "Iteration 5."
| <code>field:&gt;=<em>VALUE</em></code> | **points:&lt;=10** will show items with 10 or less points.
| <code>field:&lt;=<em>VALUE</em></code> | **points:&lt;=10** will show items with 10 or less points.

You can also use `..` to filter for an inclusive range. When working with a range, `*` can be supplied as a wildcard operator.

Expand Down

0 comments on commit a5bde76

Please sign in to comment.