From b945f78b9a7dd08dad4bf7cedeb27f680f6a0ee2 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Sat, 8 Apr 2023 11:30:56 +0200 Subject: [PATCH] use correct sort attr --- changedetectionio/templates/watch-overview.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/templates/watch-overview.html b/changedetectionio/templates/watch-overview.html index 6835942cd..ee344d81e 100644 --- a/changedetectionio/templates/watch-overview.html +++ b/changedetectionio/templates/watch-overview.html @@ -69,7 +69,7 @@ - {% for watch in watches|sort(attribute='date_created', reverse=sort_order) %} + {% for watch in watches|sort(attribute=sort_attribute, reverse=sort_order) %} {# WIP for pagination, disabled for now {% if not ( loop.index >= 3 and loop.index <=4) %}{% continue %}{% endif %} -->