Skip to content

Commit b8cc0b1

Browse files
committed
review fixes
1 parent c1e6dba commit b8cc0b1

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed

docs/core-concepts/issues/visualise_filter.mdx

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,26 +35,26 @@ You can combine multiple filters to create powerful queries:
3535
- Add **State****is not**`Done`
3636

3737
**Track overdue work:**
38-
- Set **Target date****before**[Today's date]
38+
- Set **Target date****before**[Select date]
3939
- Add **State group****is not**`Completed`
4040

4141
**Review items without assignments:**
42-
- Set **Assignee** → is → [empty]
42+
- Set **Assignee** → is → [Leave empty]
4343
- Add State → in → [Backlog, To Do]
4444

4545
### Work with date filters
4646

4747
Date filters are particularly powerful for project management:
4848

4949
**This week's deliverables:**
50-
- Set **Target date****between**[Monday] and [Sunday]
50+
- Set **Target date****between**[[Select date range]
5151

5252
**Items starting soon:**
53-
- Set **Start Date****after or on**[Today]
54-
- Add **Start Date****before or on**[One week from today]
53+
- Set **Start Date****after or on**[Select date]
54+
- Add **Start Date****before or on**[Select date]
5555

5656
**Overdue items:**
57-
- Set **Target date****before**[Today]
57+
- Set **Target date****before**[Select date]
5858
- Add **State group****is not**[Completed]
5959

6060
## Manage your filters
@@ -77,7 +77,7 @@ Each field supports different operators to give you precise control over your fi
7777
You get essential filtering with the `is` operator, plus `between` for date fields. This covers the most common filtering needs.
7878

7979
**Paid plans**
80-
Unlock advanced filtering with additional operators including `is not`, `after`, `before`, and more specialized conditions. We will be adding more conditions here such as `in`, `contains`, `is empty`, etc. .
80+
Unlock advanced filtering with additional operators including `is not`, `after`, `before`, and more specialized conditions. We will be adding more conditions here such as `not in`, `contains`, `is empty`, etc. .
8181
:::
8282

8383
### Type
@@ -87,6 +87,7 @@ Filter by custom work item types, such as Bug, Feature, or Task.
8787
| Operator | Description | Use case |
8888
|----------|-------------|----------|
8989
| `is` | Exactly matches one type | Show only work items with type *Bug* |
90+
| `is any of` | Matches any of several types | Bugs or Tasks only |
9091

9192
### State
9293

@@ -95,6 +96,7 @@ View work items based on their current state, such as Todo, In Progress, or Done
9596
| Operator | Description | Use case |
9697
|----------|-------------|----------|
9798
| `is` | Exactly matches one state | Only items In Progress |
99+
| `is any of` | Matches any of several states | Todo or In Progress |
98100
| `is not` | Excludes one state | Everything except Done |
99101

100102
### State Group
@@ -104,6 +106,7 @@ View all, active or backlog work items.
104106
| Operator | Description | Use case |
105107
|----------|-------------|----------|
106108
| `is` | Exactly matches one group | Show only Started work items |
109+
| `is any of` | Matches any of several groups | Backlog or Unstarted |
107110
| `is not` | Excludes one group | Everything except Backlog |
108111

109112
### Assignees
@@ -113,6 +116,7 @@ Focus on work items assigned to specific team members to track workloads or iden
113116
| Operator | Description | Use case |
114117
|----------|-------------|----------|
115118
| `is` | Exactly matches one person | Find work assigned to Sarah |
119+
| `is any of` | Matches any of multiple people | Show work for the frontend team |
116120
| `is not` | Excludes one person | Hide items assigned to John |
117121

118122
### Priority
@@ -122,6 +126,7 @@ Filter work items by their priority level (e.g., Urgent, High, Medium, Low) to f
122126
| Operator | Description | Use case |
123127
|----------|-------------|----------|
124128
| `is` | Exactly matches one priority | Only high priority items |
129+
| `is any of` | Matches any of several priorities | High or medium priority |
125130
| `is not` | Excludes one priority | Everything except low priority |
126131

127132
### Mentions
@@ -131,6 +136,7 @@ Filter tasks where you or another team member has been mentioned to ensure no cr
131136
| Operator | Description | Use case |
132137
|----------|-------------|----------|
133138
| `is` | Exactly matches one person | Items mentioning Sarah |
139+
| `is any of` | Matches any of multiple people | Mentioning team leads |
134140
| `is not` | Excludes one person | Not mentioning John |
135141

136142
### Label
@@ -140,6 +146,7 @@ Filter work items based on custom tags, such as "Frontend", or "Marketing".
140146
| Operator | Description | Use case |
141147
|----------|-------------|----------|
142148
| `is` | Exact label match | Label exactly "bug" |
149+
| `is any of` | Matches any of the Labels| frontend or backend |
143150
| `is not` | Not exact label match | Label not exactly "bug" |
144151

145152
### Cycle
@@ -149,6 +156,7 @@ View work items tied to specific cycles to monitor progress within a timeframe.
149156
| Operator | Description | Use case |
150157
|----------|-------------|----------|
151158
| `is` | Exactly this cycle | Items in Sprint 23 |
159+
| `is any of` | Any of these cycles | In Sprint 23 or 24 |
152160
| `is not` | Not this specific cycle | Not in Sprint 23 |
153161

154162
### Module
@@ -158,6 +166,7 @@ Filter work items by their associated module to analyze related tasks together.
158166
| Operator | Description | Use case |
159167
|----------|-------------|----------|
160168
| `is` | Exactly this module | Items in Authentication module |
169+
| `is any of` | Any of these modules | In API development or Data management modules |
161170
| `is not` | Not this specific module | Not in Authentication module |
162171

163172
### Start date and Target date
@@ -186,4 +195,5 @@ Identify work items created by specific individuals.
186195
| Operator | Description | Use case |
187196
|----------|-------------|----------|
188197
| `is` | Exactly matches one person | Items created by Sarah |
198+
| `is any of` | Matches any of multiple people | Show work for the frontend team |
189199
| `is not` | Excludes one person | Not created by John |

0 commit comments

Comments
 (0)