fix(filter): clarify in
filter syntax
This commit is contained in:
parent
86b460d09c
commit
76b3ac39b6
@ -61,7 +61,7 @@ Here are some examples of filter queries:
|
|||||||
* `priority = 4`: Matches tasks with priority level 4
|
* `priority = 4`: Matches tasks with priority level 4
|
||||||
* `dueDate < now`: Matches tasks with a due date in the past
|
* `dueDate < now`: Matches tasks with a due date in the past
|
||||||
* `done = false && priority >= 3`: Matches undone tasks with priority level 3 or higher
|
* `done = false && priority >= 3`: Matches undone tasks with priority level 3 or higher
|
||||||
* `assignees in [user1, user2]`: Matches tasks assigned to either "user1" or "user2
|
* `assignees in user1, user2`: Matches tasks assigned to either "user1" or "user2
|
||||||
* `(priority = 1 || priority = 2) && dueDate <= now`: Matches tasks with priority level 1 or 2 and a due date in the past
|
* `(priority = 1 || priority = 2) && dueDate <= now`: Matches tasks with priority level 1 or 2 and a due date in the past
|
||||||
|
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ const showDocs = ref(false)
|
|||||||
<code>done = false && priority >= 3</code>:
|
<code>done = false && priority >= 3</code>:
|
||||||
{{ $t('filters.query.help.examples.undoneHighPriority') }}
|
{{ $t('filters.query.help.examples.undoneHighPriority') }}
|
||||||
</li>
|
</li>
|
||||||
<li><code>assignees in [user1, user2]</code>: {{ $t('filters.query.help.examples.assigneesIn') }}</li>
|
<li><code>assignees in user1, user2</code>: {{ $t('filters.query.help.examples.assigneesIn') }}</li>
|
||||||
<li>
|
<li>
|
||||||
<code>(priority = 1 || priority = 2) && dueDate <= now</code>:
|
<code>(priority = 1 || priority = 2) && dueDate <= now</code>:
|
||||||
{{ $t('filters.query.help.examples.priorityOneOrTwoPastDue') }}
|
{{ $t('filters.query.help.examples.priorityOneOrTwoPastDue') }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user