From b2189ae724742b5777c7a73e1eec36758ede55e4 Mon Sep 17 00:00:00 2001 From: Mark Yu Date: Sun, 13 Jul 2025 18:33:53 -0400 Subject: [PATCH] add Default to dropdown since the GUI allows it --- src/webui/www/private/shareratio.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/webui/www/private/shareratio.html b/src/webui/www/private/shareratio.html index f841e09f3..df6094a0d 100644 --- a/src/webui/www/private/shareratio.html +++ b/src/webui/www/private/shareratio.html @@ -66,9 +66,8 @@ document.getElementById("setInactiveMinutes").checked = true; document.getElementById("inactiveMinutes").value = values.inactiveSeedingTimeLimit; } - if (values.shareLimitAction >= 0) - document.getElementById("action").value = values.shareLimitAction.toString(); + document.getElementById("action").value = values.shareLimitAction.toString(); } shareLimitChanged(); @@ -193,6 +192,7 @@