Browse Source
Prevent accounts order from being reset when changing language
Fixes #181
master
meriadec
7 years ago
No known key found for this signature in database
GPG Key ID: 1D2FC2305E2CB399
2 changed files with
0 additions and
2 deletions
-
src/components/SettingsPage/Display.js
-
src/types/common.js
|
@ -25,7 +25,6 @@ class TabProfile extends PureComponent<Props, State> { |
|
|
state = { |
|
|
state = { |
|
|
inputValue: { |
|
|
inputValue: { |
|
|
language: this.props.settings.language, |
|
|
language: this.props.settings.language, |
|
|
orderAccounts: '', |
|
|
|
|
|
}, |
|
|
}, |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
@ -59,7 +59,6 @@ export type SettingsProfile = { |
|
|
} |
|
|
} |
|
|
export type SettingsDisplay = { |
|
|
export type SettingsDisplay = { |
|
|
language: string, |
|
|
language: string, |
|
|
orderAccounts: string, |
|
|
|
|
|
} |
|
|
} |
|
|
export type Settings = SettingsProfile & SettingsDisplay |
|
|
export type Settings = SettingsProfile & SettingsDisplay |
|
|
|
|
|
|
|
|