mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-03-25 16:01:22 -05:00
Filtering supports "Include Tasks which don't have a value set" but saved views do not #657
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @jonwedell on GitHub (Oct 8, 2025).
Description
When applying filters to a view, the "Include Tasks which don't have a value set" option is available.
When creating a new saved view it is not. I believe this makes it impossible to create my desired view.
My desired view is the filter
startDate < now+ "Include Tasks which don't have a value set" to show all tasks which either have already started or do not have a start date defined. (Filter out future tasks that are not ready to start.)Which alternatives did you consider using instead?
I also attempted to see if I could filter against null, with a rule like
startDate < now || startDate = nullbut filtering against null values is also not supported. I would prefer to filter against null than have "Include Tasks which don't have a value set" to created my desired filter, but the inconsistency of the presence of that option seems confusing and potentially worth it's own issue.@kolaente commented on GitHub (Oct 8, 2025):
This will work once we get filtering by null values.