Fix minor ui-bugs

This commit is contained in:
Thomas Nordquist
2019-04-27 10:31:06 +02:00
parent 070b72b304
commit 6021df7150
2 changed files with 1 additions and 4 deletions

View File

@@ -109,7 +109,7 @@ class Settings extends React.Component<Props, {}> {
private toggleTheme() {
const { actions, theme } = this.props
return <BooleanSwitch title="Dark Theme" tooltip="Enable dark theme" value={theme === 'light'} action={actions.settings.toggleTheme} />
return <BooleanSwitch title="Dark Mode" tooltip="Enable dark theme" value={theme === 'dark'} action={actions.settings.toggleTheme} />
}
private renderAutoExpand() {