From af3f1f070aa84c261a387b264f7507bb6da4eb5d Mon Sep 17 00:00:00 2001 From: Roland Osborne Date: Tue, 23 Apr 2024 13:08:20 -0700 Subject: [PATCH] #87: thanks @maurelio-cky, restricting range of admin field for storage and accounts --- net/web/src/dashboard/Dashboard.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/web/src/dashboard/Dashboard.jsx b/net/web/src/dashboard/Dashboard.jsx index 97945985..bc137d0d 100644 --- a/net/web/src/dashboard/Dashboard.jsx +++ b/net/web/src/dashboard/Dashboard.jsx @@ -106,7 +106,7 @@ export function Dashboard() {
{state.strings.storageLimit}
- actions.setStorage(e)} + actions.setStorage(e)} placeholder={state.strings.storageHint} value={state.accountStorage} />
@@ -123,7 +123,7 @@ export function Dashboard() { actions.setEnableOpenAccess(e)} size="small" defaultChecked={false} checked={state.enableOpenAccess} /> { state.enableOpenAccess && ( - actions.setOpenAccessLimit(e)} + actions.setOpenAccessLimit(e)} placeholder={state.strings.limit} value={state.openAccessLimit} /> )}