From b627c6baddafa8bb63e8c2ce5b624133e190e88d Mon Sep 17 00:00:00 2001 From: Stevie Robinson Date: Thu, 30 Sep 2021 20:11:52 +0200 Subject: [PATCH] New: Disable autocomplete of port number (cherry picked from commit 943a3d80c4ff37cdffcd840190353d679c979493) --- frontend/src/Settings/General/HostSettings.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/Settings/General/HostSettings.js b/frontend/src/Settings/General/HostSettings.js index a750d4bb9..29b3815e6 100644 --- a/frontend/src/Settings/General/HostSettings.js +++ b/frontend/src/Settings/General/HostSettings.js @@ -53,6 +53,7 @@ function HostSettings(props) { name="port" min={1} max={65535} + autocomplete="off" helpTextWarning={translate('RestartRequiredHelpTextWarning')} onChange={onInputChange} {...port}