From 64380dab6ae515111e6a0965af903a3f9a8f57e2 Mon Sep 17 00:00:00 2001 From: Kharec Date: Sat, 8 Nov 2025 10:42:47 +0100 Subject: [PATCH] feat: valid overdue filter --- flado/blueprints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flado/blueprints.py b/flado/blueprints.py index 12f09e6..5e2117a 100644 --- a/flado/blueprints.py +++ b/flado/blueprints.py @@ -52,7 +52,7 @@ def index() -> str: search_query = request.args.get('search', '') # Validate filter type - valid_filters = ['all', 'today', 'upcoming', 'active', 'completed'] + valid_filters = ['all', 'today', 'upcoming', 'overdue', 'active', 'completed'] if filter_type not in valid_filters: filter_type = 'all'