From 0f9f1f7917649e5a9e804f3331f52fe1d1594cd8 Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Fri, 23 Jun 2023 14:21:03 +0200 Subject: [PATCH] configuration: options: adapt to new advanced statistic filter default default in the backend is now false Signed-off-by: Dominik Csapak --- js/SystemOptions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/SystemOptions.js b/js/SystemOptions.js index 675dde4..7a22e1a 100644 --- a/js/SystemOptions.js +++ b/js/SystemOptions.js @@ -67,7 +67,7 @@ Ext.define('PMG.SystemOptions', { { defaultValue: 1 }); me.add_boolean_row('advfilter', gettext('Use advanced statistic filters'), - { defaultValue: 1 }); + { defaultValue: 0 }); me.add_integer_row('statlifetime', gettext('User statistic lifetime (days)'), { minValue: 1, defaultValue: 7, deleteEmpty: true }); -- 2.39.2