mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-02 14:16:39 +01:00
Fix this totally unset key
This commit is contained in:
parent
37f7c2a581
commit
ff5fd09669
1 changed files with 1 additions and 1 deletions
|
@ -1014,7 +1014,7 @@ function Compose({
|
||||||
onChange={(e) => {
|
onChange={(e) => {
|
||||||
const { value } = e.target;
|
const { value } = e.target;
|
||||||
setLanguage(value || DEFAULT_LANG);
|
setLanguage(value || DEFAULT_LANG);
|
||||||
store.session.set('language', value);
|
store.session.set('currentLanguage', value || DEFAULT_LANG);
|
||||||
}}
|
}}
|
||||||
disabled={uiState === 'loading'}
|
disabled={uiState === 'loading'}
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in a new issue