From 79216b3c7bc4c17eeff2e97dafeac99f168a6e17 Mon Sep 17 00:00:00 2001 From: nikk gitanes Date: Fri, 23 Jul 2021 00:41:59 +0300 Subject: [PATCH] change cache max value to 1TB and increase steps --- web/src/components/Settings/PrimarySettingsComponent.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/components/Settings/PrimarySettingsComponent.jsx b/web/src/components/Settings/PrimarySettingsComponent.jsx index e73cbcd..03d6b91 100644 --- a/web/src/components/Settings/PrimarySettingsComponent.jsx +++ b/web/src/components/Settings/PrimarySettingsComponent.jsx @@ -80,9 +80,9 @@ export default function PrimarySettingsComponent({ sliderMin={32} sliderMax={1024} inputMin={32} - inputMax={20000} - step={8} - onBlurCallback={value => setCacheSize(Math.round(value / 8) * 8)} + inputMax={999999} + step={4} + onBlurCallback={value => setCacheSize(Math.round(value / 4) * 4)} />