You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently in list of Task Instances there is no possibility to quickly filter only tasks with None state. This issue proposes to introduce such possibility. I see two approaches that could be introduced to handle this:
add Is empty and Is not empty filtering options in filter controls
when querying underlying database to get list of tasks, do COALESCE(state, 'None') (pseudocode) so if user enters None into (for example) Starts with clause, it's filtered properly.
Use case/motivation
None is a valid status for task and it should be possible to filter by it.
The REST API already special cases none (as a string) for the None state. We can probably do the same in the web UI. Feel free to submit a PR for this.
Description
Currently in list of
Task Instances
there is no possibility to quickly filter only tasks withNone
state. This issue proposes to introduce such possibility. I see two approaches that could be introduced to handle this:Is empty
andIs not empty
filtering options in filter controlsCOALESCE(state, 'None')
(pseudocode) so if user entersNone
into (for example)Starts with
clause, it's filtered properly.Use case/motivation
None is a valid status for task and it should be possible to filter by it.
Related issues
No response
Are you willing to submit a PR?
Code of Conduct
The text was updated successfully, but these errors were encountered: