Roadmap
Roadmap copied to clipboard
Set selected filter initially to all to match picker option
The status filter picker is initialized with an empty string "" currently, but this is not an option in the picker. So SwiftUI complains with a fault log:
Picker: the selection "" is invalid and does not have an associated tag, this will give undefined results.
This PR initializes this with "all", which is always available. Other ways could be to just default the State to "all" and to remove the argument from the auto generated init. Or make it user configurable. But I don't have time for this so this is a quick fix.