diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2022-08-26 15:15:56 +0200 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2022-08-29 12:03:43 +0200 |
| commit | 6849ac7c55533e553f27def38c6eab007abe3dc0 (patch) | |
| tree | b8c29b46ee9a04dc4183bc980466acc2818a7624 | |
| parent | 6057fe4cbfd1259dc7dbfff84d946825e82c7dbc (diff) | |
| download | mullvadvpn-6849ac7c55533e553f27def38c6eab007abe3dc0.tar.xz mullvadvpn-6849ac7c55533e553f27def38c6eab007abe3dc0.zip | |
Enable interface settings when logged out
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | gui/src/renderer/components/Settings.tsx | 6 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b5d2b6a01..1814e2353f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -56,6 +56,7 @@ Line wrap the file at 100 chars. Th - Quit app gracefully if renderer process is killed or crashes. - Enable reconnect in blocked state in desktop app. - Fix error handling during device removal in the desktop app. +- Enable interface settings when app is logged out #### Windows - Only use the most recent list of apps to split when resuming from hibernation/sleep if applying diff --git a/gui/src/renderer/components/Settings.tsx b/gui/src/renderer/components/Settings.tsx index 56c75f0602..587ca625c9 100644 --- a/gui/src/renderer/components/Settings.tsx +++ b/gui/src/renderer/components/Settings.tsx @@ -63,7 +63,7 @@ export default function Support() { )} <StyledSettingsContent> - {showSubSettings && ( + {showSubSettings ? ( <> <Cell.Group> <AccountButton /> @@ -77,6 +77,10 @@ export default function Support() { </Cell.Group> )} </> + ) : ( + <Cell.Group> + <InterfaceSettingsButton /> + </Cell.Group> )} <Cell.Group> |
