From 43f60cba93867387327ff9debf95112366adbf7e Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Sun, 6 Jun 2021 17:34:45 +1000 Subject: [PATCH] default for grouping should be None not Day when searching (only time there is no grouping value set) AND this matches defaults now set in files.py ViewingOptions function --- templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/base.html b/templates/base.html index 0b9568e..3c19afd 100644 --- a/templates/base.html +++ b/templates/base.html @@ -155,7 +155,7 @@ if( $('#grouping').length ) $('#search_grouping').val( $('#grouping').val() ) else - $('#search_grouping').val("Day") + $('#search_grouping').val("None") if( $('#how_many').length ) $('#search_how_many').val( $('#how_many').val() )