From 232f164cfcffec279d3d6d28655ddf79aedaa2e2 Mon Sep 17 00:00:00 2001 From: WithoutPants <53250216+WithoutPants@users.noreply.github.com> Date: Tue, 30 Jul 2019 11:50:15 +1000 Subject: [PATCH] Fix settings fields becoming unsynced --- .../components/Settings/SettingsConfigurationPanel.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/v2/src/components/Settings/SettingsConfigurationPanel.tsx b/ui/v2/src/components/Settings/SettingsConfigurationPanel.tsx index 2a7d84809..101459245 100644 --- a/ui/v2/src/components/Settings/SettingsConfigurationPanel.tsx +++ b/ui/v2/src/components/Settings/SettingsConfigurationPanel.tsx @@ -81,25 +81,25 @@ export const SettingsConfigurationPanel: FunctionComponent = (props: IPr label="Database Path" helperText="File location for the SQLite database (requires restart)" > - setDatabasePath(e.target.value)} /> + setDatabasePath(e.target.value)} /> - setGeneratedPath(e.target.value)} /> + setGeneratedPath(e.target.value)} /> - setUsername(e.target.value)} /> + setUsername(e.target.value)} /> - setPassword(e.target.value)} /> + setPassword(e.target.value)} />